0
What is the difference between void main and return
2 Answers
+ 2
void - no value to return
main - the main method, where the program starts
return - used to return a value from a method (function), or just to return to the place where the method is called.