Very Basic C Program Development
Computer program is designed to solve problem. Nowadays it makes ease a lot
of our works.
The simple steps to find a solution to problems are the same steps used to write
a program and basically can be defined as follows:
1. Define the problem.
2. Devise a plan to solve it.
3. Implement the plan.
4. Test the result to see whether the problem is solved.
When creating a program in C:
1. Determine the objectives of the program.
2. Decide which method the program will use to solve the problem while
preparing the pseudocode or flowchart.
3. Translate this pseudocode or flowchart into a computer program using the
C language.
4. Run and test the program.