

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the program in DOS (Compiler - Turbo C)? #include double i; int main() { (int)(float)(char) i; printf("%d", sizeof((int)(float)(char)i)); return 0; } |
A. | 1 |
B. | 2 |
C. | 4 |
D. | 8 |
Answer» C. 4 | |