Declarations

Ordinary variables are declared using a statement of the form:

[attributes] type name;

More than one variable of the same type may be declared at a time:

[attributes] type name, name, name;

Initial values may be specified:

[attributes] type name = constant, name = constant;