I know that the C++ standard says that return 0 is inserted at the end of main() if no return statement is given; however, I often see recently-wri
return 0
main()
It makes behavior of the code explicit.