This is an old version, view current version.
9.8 Void Functions as Statements
Void functions
A function can be declared without a return value by using void
in place of a return type. Note that the type void
may only be
used as a return type—arguments may not be declared to be of type
void
.