Technology Technology

Definition of Void

Definition: Void is a value of a functiontype 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 ) { // do something } // call the function dosomething() ; Void is also used to indicate that there are no parameters in the function.

Glossary:

ABCDEFGHIJKLMNOPQRSTUVWXYZ


Leave a reply