-
What will be the output of the following C code (after linking to source file having definition of arrayA)?
#include <stdio.h>
int main()
{
extern arrayA[];
printf("%d\n", arrayA[0]);
}
-
- Compile time error due to multiple definitio
- Compile time error because size of array is not provided
- Compile time error because datatype of array is not provided
- Value of arrayA[0];
- None of these
Correct Option: C
Compile time error because datatype of array is not provided