Order this code to declare and define a main() function which outputs "hello world".

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.