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


Loading

โœช Choose the correct option.

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


#include

int main() {

extern out;

printf("%d", out);

return 0;

}

int out=100;

A. Undefined reference symbol out
B. Compiler Error
C. 100
D. garbage Value