Don't know anything about C but want to learn? In this thread I will gradually teach C post by post. Let's start oh and email me if you have questions so this thread can be researved for lessons.
NOTE: THE ` are to fill space
Compound Assignment operators
________________Example_________________Equivilent_____________
*=```````````total *= 1.25;`````````` total = total *1.25;
____________________________________________________________
/ = `````````amt /= factor;````````````amt=amt factor;
____________________________________________________________
%= ````````` days %= 3; ````````````days=days % 3;
_____________________________________________________________
+= ````````` count += 1;`````````` count =count + 1;
_____________________________________________________________
-= ``````````` adjust -= 0.5; ``````````adjust=adjust - 0.5;
_____________________________________________________________
NOTE: THE ` are to fill space
Compound Assignment operators
________________Example_________________Equivilent_____________
*=```````````total *= 1.25;`````````` total = total *1.25;
____________________________________________________________
/ = `````````amt /= factor;````````````amt=amt factor;
____________________________________________________________
%= ````````` days %= 3; ````````````days=days % 3;
_____________________________________________________________
+= ````````` count += 1;`````````` count =count + 1;
_____________________________________________________________
-= ``````````` adjust -= 0.5; ``````````adjust=adjust - 0.5;
_____________________________________________________________