#include <iostream>
using std::cout;
int main()
{
int a;
int b = 7;
a = ++b + ++b - --b + --b;
cout << a;
return 0 ;
}
y the output in c++ is 17??
should be 16 right?? anyone may clarify me about this???
thanks in advance ...hehe
|
Results 1 to 11 of 11
Thread: confuseThreaded View
|
Click Here to Expand Forum to Full Width |