control will return from void function as soon as the execution of function is completed and it will not return any value as such.it will return to the same line of execution as before the execution of the void function....
A function that has a return type-specifier of void indicates that the function is not expected to return a object or value. void, in this context, means nothing.