1.

Evaluate the following expression , if the values of the variables are a = 2 , b = 3 and c = 9 1. a – (b++) * (--c) 2. a * (++b) % c

Answer»

a) a - (B++) * (--C); 2 - (3) * (8) 2 - 24 -22 Ans ________________________________________ b) a * (++b) % c 2 * 4 % 9 8 % 9 8 AnsExplanation:



Discussion

No Comment Found