Consider this code: “int s = 20; int t = s++ + –s;”. What are the values of s and t?

cut to the chase, the answer is “s is 20, and t cannot be determined.” I understand the part that s is 20, but why t cannot be determined? Please help me!

Leave a Comment