Computer Science, asked by yashharshsingh575, 5 months ago

int a= 8 , b=9, c; c= ++a*5+b++;​

Answers

Answered by kauraman122900
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