1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
char *Str[1] = {"WELCOME"};
printf("%s", Str[0]);
return 0;
}

A. Garbage value
B. Compilation Error
C. Runtime Error
D. WELCOME
E. None of these
Answer» E. None of these


Discussion

No Comment Found