Hi i hav executed the following c code..the inner printfs executes first and prints some garbage value...why dont the outer printf prints anything...
i got only one garbage value y dont two garbage values....wt s the order of precedence in printf function and in nested printfs....
the c code is
void main()
{
while(1)
{
if(printf("%d",printf("%d")))
break;
else
continue;
}
}
Thanks & Regards.