I have Red Hat Linux enterprise-4 edition on my pc. Problem is this.
int main()
{
int i=1;
i=i++;
printf("%d",i);
return 0;
}
Out put of this program is 1 in my pc & 2 in turbo c. what is the correct result.
Please help me.
int main()
{
int i=1;
i=i++;
printf("%d",i);
return 0;
}
Out put of this program is 1 in my pc & 2 in turbo c. what is the correct result.
Please help me.
Comment