InterviewSolution
Saved Bookmarks
| 1. |
Consider the following C program segment:char p[20];char *s = "string";int length = strlen(s);int i;for (i = 0; i < length; i++)p[i] = s[length — i];printf("%s", p);The output of the program is? (GATE CS 2004)(A) gnirts(B) gnirt(C) string(D) no output is printed |
| Answer» | |