61.
What will be the correct output of the following program?
#include<string.h>
void main()
{
   char str[] = "C EXAMINATION", rev[17];
   int i = strlen(str), j=0;
   for( ; i>=0; rev[j++] = str[i--])
   rev[j] =  str[j] ;
   puts(rev);
}

63.
String concatenation means -

67.
There are two groups of string functions defined in the header <string.h>. What are they?

70.
What is the return value of strxfrm()?

Read More Section(Arrays and Strings)

Each Section contains maximum 100 MCQs question on Arrays and Strings. To get more questions visit other sections.