Predict the output of the following code
#includestdio.h
int main()
{
int a=2, b=2;
for(;b;printf("%d -- %d\n", a, b))
{
b=a++= 2;
}
return 0;
}

Posted on by