1.

What is the output of the program_x000D_ #include_x000D_ int main()_x000D_ {_x000D_ struct emp_x000D_ {_x000D_ char name[20];_x000D_ int age;_x000D_ float sal;_x000D_ };_x000D_ struct emp e = {"Tiger"};_x000D_ printf("%d, %f\n", e.age, e.sal);_x000D_ return 0;_x000D_ }

A. 0, 0.000000
B. Garbage values
C. Error
D. None of above
Answer» B. Garbage values


Discussion

No Comment Found