#include<stdio.h> #include<conio.h> int main() { int a=9,b=10,c; c=(b<a || b>a); printf(c=%d,c); getch(); }
Find the output of the above program or error, if any.
Reveal answer
Fill a bubble to check yourself
#include<stdio.h> #include<conio.h> int main() { int a=9,b=10,c; c=(b<a || b>a); printf(c=%d,c); getch(); }
Find the output of the above program or error, if any.