Posts by Xx_DarDoAzuL_xX • 53 points
1 post
-
4
votes1
answer97
viewsQ: What does the ">" operator do in the middle of an arithmetic expression in C++?
I found this line of code in a proposed solution to a certain problem. excedente = a % 10 + b % 10 + excedente > 9; My point is, what function is that the > 9 makes this line me specific?…