Which of the following statements are correct about the below program? #include<stdio.h> int main() { int n = 0, y = 1; y == 1? n=0 : n=1; if(n) printf("Yes "); else printf("No "); return 0; }

Correct Answer: Error: Lvalue required

More Questions from Control Instructions

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion