1.

What will be the output of the following C code?
#include <stdio.h>
struct student
{
int roll_no;
char Name[35];
}
void main()
{
struct student stu;
stu.roll_no = 10;
printf("Ajit Kumar Gupta");
}

A. Nothing
B. Ajit Kumar Gupta
C. 10
D. Garbage value
E. Compilation Error
Answer» F.


Discussion

No Comment Found