1.

What will be the output of the program?

#include<stdio.h>
#include<math.h>
int main()
{ printf("%d, %d, %d n", sizeof(3.14f), sizeof(3.14), sizeof(3.14l)); return 0;
}

A. 4, 4, 4
B. 4, 8, 8
C. 4, 8, 10
D. 4, 8, 12
Answer» D. 4, 8, 12


Discussion

No Comment Found