1.

What will be the output of the following C code?
 #include <stdio.h>
int main()
{
char *ch = {"I", "T", "E", "R", "V", "I", "E", "W"};
printf("%s", ch);
}

A. I
B. Garbage value
C. Runtime Error
D. No output
E. None of these
Answer» B. Garbage value


Discussion

No Comment Found