Program Developments Steps
- D A Rosi Arsida Wardani
- Apr 25, 2021
- 1 min read
Understand the problem at hand.
Identify what are the inputs and outputs required.
Use a flowchart or algorithmic approach to define functionality.
Test the functionality by using test data.
Writing of C code :
Write the main program and call the function to achieve desired results.
Write C code for a function declared in the main program.
Debug and remove errors
Syntax errors. These errors are easy to remove. Compiler pinpoints syntactical errors.
Logical errors. The compiler can not catch these errors. Only extensive testing can resolve these errors.
Run time errors. The examples are linking errors or errors that can occur at the run time of the program.
Testing and Validation. Design the test data, called test cases that would test the correct functioning of the algorithm under
Normal conditions
Best case considerations
Worst case considerations
Documentation to keep track of development and changes incorporated in the program so that program maintenance becomes easier later.
Comentarios