Definition: Void is a value of a function type that means nothing is returned. Some languages have special types of functions known as procedures or subroutines that don't return a value.
C and C++ have a void type which means the same.
void dosomething( void ) {Void is also used to indicate that there are no parameters in the function.
// do something
}
// call the function
dosomething() ;

