[Solved] What is the output of the following code in C? [closed]
“How can a pointer to a character data type can hold a string data type?” Well, it’s partly true that in C, type ‘pointer to char’ is the string type. Any function that operates on strings (including printf) will be found to accept these strings via parameters of type char *. “How can printf() print … Read more