First page Back Continue Last page Graphics
TYPES
void
As a type for a function, indicates that the function will not return any value.
A void function is what we have been calling a procedure.
See test_stat.cpp for an example.
e.g. void my_procedure(int a, int b);
other uses later.