write the output of the following program snippet
1. int a=5 ,int b= 6
find
int c =( a++ + ++ a) % b --
Answers
Answered by
2
Answer:
= ( 5 + 7 ) % 6 ;
= 12 % 6 ;
= 0 ;
Explanation:
mark me BRAINLIST ✔️
Similar questions