What will be the output of the following program?
#includestdio.h
int main()
{
int x=2, y=2;
for(; y; printf("%d %d\n", x, y))
{
y = x++ = 5;
}
printf("\n");
return 0;
}

Posted on by