int p=5;
int q= (--p) * 2 + 4* (++p);
Answers
Answered by
2
Answer:
THE VALUE OF 'q' IS 28.
Explanation:
int q = (--p) * 2 + 4 * (++p);
= (4) * 2 + 4 * (5);
= 28
HOPE IT HELPS YOU BUDDY!
Similar questions