int a= 8 , b=9, c; c= ++a*5+b++;
Answers
Answered by
1
Answer:
54
Explanation:
int a = 8;
int b = 9;
int c = ++a*5+b++;
int c = 9*5+9
int c will be 54
PLZ MARK AS BRAINLIEST
Similar questions