What will be the result of the given code snippet in C language?
main()
{
int x=1;
clrscr(); for(;x++;x%10?0:1)
{
printf(%d,x*x);
}
getch();
}
Reveal answer
Fill a bubble to check yourself
What will be the result of the given code snippet in C language?
main()
{
int x=1;
clrscr(); for(;x++;x%10?0:1)
{
printf(%d,x*x);
}
getch();
}