Given the following code:
int a = 300;
int b = a++;
int c = --b;
What is the value of the variable c?
Given the following code:
int a = 300;
int b = a++;
int c = --b;
What is the value of the variable c?
Create a free account to access the full topic