Declaration is the part of the subprogram (procedure or function) which provides the protocol(header), but not the body of the subprogram.
4
votes
6answers
125 views
Declaration of multiple variables in one line
Given these alternatives:
int x, y, z;
or
int x;
int y;
int z;
Is there any real reason to choose one over the other?