

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> //(sizeof double = 10, float = 5, void = 4) #define PI 3.14 int main() { printf("%d", sizeof(PI)); } |
A. | 1 |
B. | 4 |
C. | 8 |
D. | Compilation Error |
E. | None of these |
Answer» D. Compilation Error | |