Question:What will be output of the following c program?
#include<stdio.h>
int main(){
    int __BIG__ = 32;
    int y;
    y= __BIG__ && 8;
    printf("%d",y);
    return 0;
}
 

A 32 

B 8 

C 1 

D Compilation error 

E None 

+ Answer
+ Explanation
+ Report
Total Preview: 603

Copyright © 2024. Powered by Intellect Software Ltd