After execution of the following code, what will be the values of a, b and c?
int a, b, c;
b = 1;
c = 5;
a = 0 - (++b) + c++;
1
a = 3, b = 2, c = 6
2
a = -7, b = 1, c = 5
3
a = 4, b = 2, c = 6
4
a = 4, b = 1, c = 5
After execution of the following code, what will be the values of a, b and c?
int a, b, c;
b = 1;
c = 5;
a = 0 - (++b) + c++;