1
What will be the output of the following C code?
#include <stdio.h>
void main()
{
struct student
{
int no;
char name[20];
};
struct student s;
no = 8;
printf("%d", no);
} Answer & Solution
Answer: Option
B
No explanation is given for this question. Let's Discuss on Board