Hello Random People,
I'm new to C++, and I have some questions for all you'all. The first subject I'd like to talk about is Unary Operators. They give me a sample problem in the book. (The book is was published about 2 years ago)
Sample Problem:
int Result, A, B;
A = 4;
B = 23;
Result = 9 + (A++ - --B) * B
Result = ?
The answser -471.
I don't understand how you get that number. Can someone please explane to me how it works. :p