When you tell the C compiler the type of a variable inside main
,
you are said to declare the variable.
Thus, the following program exhibits three variable declarationsall
three variables are declared to be integer variables, because each is
preceded by the data-typedeclaring int
:
main ( ) { int size_one; int size_two; int size_three; ... }