1FUNCTION DECLARATION
2
3when void is used as a function return type,
4it indicates that the function does not return a value.
5
6
7POINTER DECLERATION
8
9When void appears in a pointer declaration,
10it specifies that the pointer is universal.
11
12
13FUNCTION PARAMETER(IN C ONLY)
14When used in a function's parameter list,
15void indicates that the function takes no parameters.
1FUNCTION DECLARATION
2
3when void is used as a function return type,
4it indicates that the function does not return a value.
5
6
7POINTER DECLERATION
8
9When void appears in a pointer declaration,
10it specifies that the pointer is universal.