0
How it is possible
6 odpowiedzi
0
#include <iostream>
using namespace std;
int main()
{
int i=0;
i=(++i)+i+(++i);
cout<< i<<endl;
int x=0;
x=(++x)+(++x);
cout<< x<<endl;
return 0;
}
x and I return 4. why????
0
We can remove the brackets and the result will not change.
0
how about ++x + ++x + ++x it is 7.