-
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");
}
-
- Linking error due to undefined reference
- Compile time error because datatype of array is not provided
- Compile time error because size of array is not provided
- Interview Mania
- None of these
Correct Option: D
Interview Mania