

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the program?_x000D_ #include_x000D_ typedef void v;_x000D_ typedef int i;_x000D_ _x000D_ int main()_x000D_ {_x000D_ v fun(i, i);_x000D_ fun(2, 3);_x000D_ return 0;_x000D_ }_x000D_ v fun(i a, i b)_x000D_ {_x000D_ i s=2;_x000D_ float i;_x000D_ printf("%d,", sizeof(i));_x000D_ printf(" %d", a*b*s);_x000D_ } |
A. | 2, 8 |
B. | 4, 8 |
C. | 2, 4 |
D. | 4, 12 |
Answer» E. | |