

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the program ?_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ static char mess[6][30] = {"Don't walk in front of me...", _x000D_ "I may not follow;", _x000D_ "Don't walk behind me...", _x000D_ "Just walk beside me...", _x000D_ "And be my friend." };_x000D_ _x000D_ printf("%c, %c\n", *(mess[2]+9), *(*(mess+2)+9));_x000D_ return 0;_x000D_ } |
A. | t, t |
B. | k, k |
C. | n, k |
D. | m, f |
Answer» C. n, k | |