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; }

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

ANSWER DOWNLOAD EXAMIANS APP