#include stdio.h

void main()
{
int x = 10;
int y = x++ + 20;
printf("%d,%d",x,y);
return 0;
}

What is the output of the following code?

Posted on by