Computer Science, asked by parvatidevi83, 4 months ago

int p=5;
int q= (--p) * 2 + 4* (++p);​

Answers

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