Void means "emptyness". In your example of
void main() it
means that the functions
main() does not return a value. I feel obliged tell you that
void main() should be avoided (no pun intended) at all costs, use int
main() instead. int
main() makes sure your program can return a value of type int to the OS on close.
read more >>