#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); }
Nothing
Previous Question Next Question
Your comments will be displayed only after manual approval.