What will be the output of the following program
void main()
{
int a,b;
for(a=b=10;a;printf("%d%d%d",a,b))
a=b++=12;
printf("%d%d",a+10,b+10);
}

Posted on by