Question:What will be output of the following c program?#include<stdio.h> int main(){ int __SMALL__ = 11; int y; y= __SMALL__ < 5; printf("%d",y); return 0; }
#include<stdio.h> int main(){ int __SMALL__ = 11; int y; y= __SMALL__ < 5; printf("%d",y); return 0; }
A 11 B 5 C 0 D Compilation error E None of these
+ AnswerD
+ ExplanationVariable name cannot be global identifier.
+ Report