- All programs in C/C++ are expressed in terms of functions.
- These functions cooperate each other. It's up to us on how to arrange them.
- However, program execution always begin on the main function.
So, the main function should always exist in our program.
- Let's look into our first program.
|