

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following is the correct output for the program given below?#include <studio.h>int main(){ extern int x; x = 30; printf("%d n", sizeof(x)); return 0;} |
A. | 2 |
B. | 4 |
C. | Would vary from compiler to compiler |
D. | Error, x undefined |
Answer» E. | |