Computer Science, asked by aliabushad7, 7 months ago

Consider the following code-
int a=3.b=4.n=1;
if (n>0)
a++;
b--;
What will be the values of a and b?​

Answers

Answered by psychoSherlock
0

Answer:

Dont Know

Explanation:

Try searching on google

Answered by IamGenesis
1

Answer:

a = 4

b = 3

Explanation:

as n is greater than 0, the value of a increases

Similar questions