<<< Boolean data type | Index | Variable Naming Convention >>> |
Assignment Operators change values of the variables. For example,
int quantity = 0; // initialize an integer variable int maxQuantity = 100; // initialize another integer // Statements with assignment: quantity = 10; // quantity is now 10 quantity = maxQuantity; // quantity is now 100
<<< Boolean data type | Index | Variable Naming Convention >>> |