C Programming
What will be the output of the following program? #include\ int main(){  extern int i;  i = 20;  printf("%ld ", sizeof(i));  return 0; }

Linker Error : Undefined symbol 'i'
Depends on the Compiler
4
2

ANSWER DOWNLOAD EXAMIANS APP