Menu

[solved] – Question 70190

#include<stdio.h>
int main()
{
int x=10;
printf(“n%d %d %d “,x,x++,++x);
return 0;
}
o/p is 12 11 12 in gcc
12 11 11 in windows

HOw is it ???

Expert Answer


OR


Leave a Reply

Your email address will not be published. Required fields are marked *