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;
}
A
B
C
D
E
11
B
5
C
0
D
Compilation error
E
None of these
Note: Variable name cannot be global identifier.