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 

+ Answer
+ Explanation
+ Report
Total Preview: 789

Copyright © 2024. Powered by Intellect Software Ltd