

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following program? main( ) { int i=4, z=12; if(i=5 || z>50) printf(“hello”); else printf(“hye”); } |
A. | hello |
B. | hye |
C. | syntax error |
D. | hellohye |
Answer» B. hye | |