<<< sizeof operator | Index | Declaration Initializers >>> |
All variables must be declared before they can be used in a program:
int counter; int month; int day; int year;
Note: C++ declarations end with a semicolon (;)
<<< sizeof operator | Index | Declaration Initializers >>> |