Question:What will be output of the following c program?
#include<stdio.h> int main(){ struct a{ int a; }; struct a b={10}; printf(\"%d\",b.a); return 0; }
A 0
B 10
C Garbage value
D Compilation error
E None of these
+ AnswerB
+ Explanation
+ Report