Computer Science, asked by namanjeet1982, 11 months ago

Consider the following statement
Int a=2,b=3,c=4;
a= (b++)+c;
b= a+(++c);
What are the values of a,b and c, respectively?

Answers

Answered by richard2006
1
A=4+4=8
B=2+4=6
C=4
This is the answer for the following statement
Similar questions