+ 4
For what do we need return 0?
3 Answers
+ 4
return 0; is a statement that returns to the main function call, and acts as a "Hey, the program executed successfully!"
+ 9
return 0 is used for normal termination of your main function , if return 1 is used then your program enters a abnormal termination
+ 5
Okay thanks