What is the output of the given program snippet in C language?
main()
{
int x=10,a=20;
clrscr(); x=(a==!!a);
printf(%d,x&&a); getch();
}
Reveal answer
Fill a bubble to check yourself
What is the output of the given program snippet in C language?
main()
{
int x=10,a=20;
clrscr(); x=(a==!!a);
printf(%d,x&&a); getch();
}