📚 Practice Mode
Programs in C
Learn at your own pace with hints and detailed explanations
1 / 15
Multiple Choice
<stdio.h>void main() { printf("%d"t, sizeof(7.5)); printf("%d"t, sizeof(80000)); printf("%d"t, sizeof('B')); }.
</stdio.h>
Which of the following is the output of the program?
- 8, 2, 2
- 4, 4, 2
- 8, 4, 2
- Compilation error
- Runtime error