|
Void is void.. It's nothing, a void type function, is telling the compiler not to expect the function to return with anything.
Newer compilers are made, to change a void type function, to be of type int, and then add a return 0; at the end.
But from a compiler point of view void is nothing, or can be anything.
|