 
			 
			MCQOPTIONS
 Saved Bookmarks
				| 1. | #include <stdio.h>int main(){ printf("%d ",sizeof(2.5)); printf("%d ",sizeof(2)); printf("%d",sizeof('A')); return 0;}29.What is the output of this program? | 
| A. | Compilation error | 
| B. | 1 0 | 
| C. | 0 0 | 
| D. | 0 1 | 
| Answer» E. | |