Assignment Operators

The ANSI C Programming Languange - Book

Created: 2022-08-19
Tags: #fleeting


+= This is called an assignment operator
#myquestion But is also = right?

This is the behind of the scenes of assignment operators

sum += 2 - 3 + 5;

The code above basically means
sum = sum + (2 - 3 + 5)

References