What will be output of the following “c” code?


Loading

โœช Choose the correct option.

What will be output of the following “c” code?


#include

void main()

{

extern int i;

i=20;

printf("%d",i);

}

A. 20
B. garbage Value
C. Linker Error : Undefined symbol “I”
D. None of these

Leave a Comment