This is the most simple way to declare a main() function.
main()
Remember, main() should return 0 to signify a successful exit or 1 to signify an error so it has a return type of int.
0
1
int
Nope, remember that main() needs to return something..