

MCQOPTIONS
Saved Bookmarks
1. |
Pick the best statement for the below program:
|
A. | Compile error because arr has been defined using struct type incorrectly. First struct type should be defined using tag and then arr should be defined using that tag. |
B. | Compile error because apart from definition of arr, another issue is in the initialization of array of struct i.e. arr[]. |
C. | Compile error because of initialization of array of struct i.e. arr[]. |
D. | No compile error and it ll print 1 0 2 0 |
Answer» E. | |