KodeGod.com

029. Technical interview question: Give the output the following code

 
int main()
{
int i, j;
i=j=2,3;
while(--i&&j++)
printf("%d %d", i, j);
return 0;
}