

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include &lt,stdio.h> void main() { char *n= "KRISHANA"; char *m = n + 3; printf("%c %c", *m, n[5]); } |
A. | S A |
B. | A S |
C. | KRISHANA |
D. | Compilation Error |
E. | None of these |
Answer» B. A S | |