MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following is the correct output for the program given below?#include <stdio.h>int main ( ){ printf ("%d %d %d n" , sizeof(2.19f), sizeof(2.19), sizeof (2.19l)); return 0 ;} |
| A. | 4 4 4 |
| B. | 4 8 8 |
| C. | 4 8 10 |
| D. | 4 8 12 |
| Answer» C. 4 8 10 | |