Write the value stored in cand d.
int a=5,b=3;
int c=a* b++;
int d=a* ++b;
Answers
Answered by
0
Answer:
20
Explanation:
Since a=5 and b=3
Therefore
d=a*b++
d=5*3++
d=5
d= 20
therefore d=20;
Similar questions