What will be output of the following “c” code? June 6, 2022 by admin โช 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. 20B. garbage ValueC. Linker Error : Undefined symbol “I”D. None of these Submit Answer