MCQ Single Best Answer Not Set

QWhat would be the output of the following program?
#include  
void main()
{
   extern int i;
   i =20;
   printf("sizeof(i)");
}

ID: #1401 Variable in C Language 927 views
Question Info
#1401Q ID
Not SetDifficulty
Variable in C LanguageTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A 2
  • B 4
  • C would vary from compiler to coompiler
  • D undefined reference to `i'
Correct Answer: Option D

Explanation

Error: undefined reference to `i'

Share This Question

Challenge a friend or share with your study group.