What is the output of the following code?
#includestdio.h
int main()
{
int x = 20;
int y = ++x + 30;
printf("%d,%d",x,y);
return 0;
}


Posted on by