Guess the output of c code
#includestdio.h
int main()
{
int x,y,z;
x=1;
y=x++;
z=++y;
printf(" %d %d %d", x,y,z);
return 0;
}

Posted on by