1.

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

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


Discussion

No Comment Found