1.

What will be the output of the following C code?#include <stdio.h> void main() { struct color { int color_code; char color_name[30]; }; struct color c; c.color_code = 000004; printf("%s", c.color_name); }

A. 000004
B. Compilation Error
C. Garbage value
D. Nothing
E. None of these
Answer» E. None of these


Discussion

No Comment Found