Home : C Language : Variables : Declarations
Ordinary variables are declared using a statement of the form:
[attributes]
typename;
More than one variable of the same type may be declared at a time:
[attributes]
typename,name,name;
Initial values may be specified:
[attributes]
typename=constant,name=constant;