Find the output of the following
# include (stdio.h)
# include (Conio.h)
void main ()
{
int a=10, b=12;
int c=(a!=6&&b>5);
printf ("%d,"c);
}
Answers
Answered by
0
it will print '1' as the output!!!
Similar questions