MCQ
Single Best Answer
Not Set
QWhat will be the output of the following program?
#include"stdio.h"
main()
{
/* assuming that the i is not defined in in any other file */
extern int i;
i = 10 ;
printf("%d", i) ;
}
ID: #1272
Variable in C Language
1,008 views
Question Info
#1272Q ID
Not SetDifficulty
Variable in C LanguageTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer: Option D
Explanation
Linker Error
Undefined symbol
Undefined symbol
'i' Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic