C++ Notes
C++ Notes
Nested Loop
A loop that is inside another loop.
Do-While Loop
The block of code is executed once (do),
Before applying the condition (while).
Variables Multiple Variable Declaration
variables.
Assignment Operators
= simple assignment
+= add AND assignment
-= subtract AND assignment
*= multiply AND assignment
/= modulo AND assignment
%= modulo shift AND assignment
<<= left shift AND assignment
>>= right shift AND assignment
&= Bitwise shift AND assignment
^= Bitwise exclusive shift AND assignment
|= Bitwise inclusive shift AND assignment