Awesome. main()
always returns an int
. C++ will do this by default but we should always return 0
to signal a successful program exit.
That's not it. main()
always returns an int
. C++ will do this by default but we should always return 0
to signal a successful program exit.