What will be the output of the following code snippet?
main()
{
int a=11,b; clrscr();
for(a%10;a++);
printf(%d,a%10?0:1);
getch();
}
Reveal answer
Fill a bubble to check yourself
What will be the output of the following code snippet?
main()
{
int a=11,b; clrscr();
for(a%10;a++);
printf(%d,a%10?0:1);
getch();
}