1.

Main(){ char *str=”abcde”;printf(“%c”, *str);printf(“%c”, *str++);printf(“%c”, *(str++));printf(“%s”, str);}The output of the above ‘C’ code will be:

A. a a c b c d e
B. a a c c c d e
C. a a b c d e
D. None of these
Answer» D. None of these


Discussion

No Comment Found