Multiple choice The following program fragment prints int a= 5 , b=2; printf(“%d” , a+++++b); 7 8 9 none of above Reveal answer Fill a bubble to check yourself D Correct answer Explanation The expression a+++++b is parsed as (a++) + (++b). a is 5, b is 2. (5++) + (++2) = 5 + 3 = 8. Since 8 is not an option, the answer is none of the above.