1.

#include <stdio.h>int main(){ printf("%d ",sizeof(5.5)); printf("%d ",sizeof(50000)); printf("%d",sizeof('A')); return 0; }36.What is the output of this program?

A. 1 1 2 3
B. 1 1 2 2
C. 0 1 2 2
D. 0 1 2 3
Answer» C. 0 1 2 2


Discussion

No Comment Found