I think you do not know what is "emptiness" ??? you..
small and quick void info
void is not a data type of type int or char, which is used to declare variables.
void is the return type
The void return type is used to say that we are not returning anything from this function.
if you are not returning anything, you need to write void as the return type for the function (including the main function). alternatively you can say ....
return 0;
at the end of the function definition.
Hope this helps you understand what is empty.
nikhil
source share