1.

What will be the output of the following C code?
#include <stdio.h>
struct clothes
{
int size;
char brand_name[20];
};
struct clothes c;
void main()
{
c.size = 36;
printf("%s", c.brand_name);
}

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


Discussion

No Comment Found