Int a=5,b=7,c; c = ++ a*4 + b++;
Answers
Answered by
0
Answer:
c=++a*4+b++
c=(++5)*4+(7++)
c=6*4+7
c=24+7
c=31
Similar questions