

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code (without linking the source file in which arrayA is defined)?#include <stdio.h> int main() { extern arrayA[]; printf("Interview Mania n"); } |
A. | Linking error due to undefined reference |
B. | Compile time error because datatype of array is not provided |
C. | Compile time error because size of array is not provided |
D. | Interview Mania |
E. | None of these |
Answer» E. None of these | |