📚 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?

  1. 8, 2, 2
  2. 4, 4, 2
  3. 8, 4, 2
  4. Compilation error
  5. Runtime error