Home > Harvard CS50: Introduction to Computer Science > Variables, Syntactic Sugar
Example of using syntactic sugar:
int counter = 0;
= counter + 1; # Notice how this demonstrates that = isn't equality, it's assignment (right to left) counter
int counter = 0;
++; counter