| <<< Introduction, declared variables | Index | Type determines operations >>> |
Type determines operations
double x; // declaration of x
int y = 7; // initialization of y
x = y + 2; // addition and assignment
| <<< Introduction, declared variables | Index | Type determines operations >>> |