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
Math,
3 months ago
Computer Science,
3 months ago
India Languages,
3 months ago
Social Sciences,
7 months ago
Math,
7 months ago
Math,
11 months ago