

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the program if the size of pointer is 4-bytes? #include int main() { printf("%d, %d\n", sizeof(NULL), sizeof(")); return 0; } |
A. | 2, 1 |
B. | 2, 2 |
C. | 4, 1 |
D. | 4, 2 |
Answer» D. 4, 2 | |