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()
Because it just looks weird to not "return" something from a function having a non-void return type (even if the standard says it's not strictly necessary).