Hello FriendsToday i will tell you about the String's in the 'C' Language. String's are basically Character Array. Examples of of string constantschar name[]={'K','N','O','W','L','E','D','G','E','\0'};char name[]="KNOWLEDGE";It is a string constant of one dimensional array of characters which is terminated by null ('\0');here '\0' is called the null character in it \n indicates that what...