Consider this code: “int v = 20; –v; cout << v++;". What value is printed, what value is v left with?

LANGUAGE: C++

CHALLENGE:

Consider this code: “int v = 20; –v; cout << v++;”. What value is printed, what value is v left with?

SOLUTION:

s is 20 and t cannot be determined