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 11 

B 5 

C 0 

D Compilation error 

E None of these 

+ Answer
+ Explanation
+ Report
Total Preview: 657

Copyright © 2024. Powered by Intellect Software Ltd