Programming Step 6
With the input, output, data, variables, and procedure defined, we can start to write the program code. The best approach is to write a little of the program at a time, and debug each piece before adding additional statements.
Write the main function to give the program a place to start.
#include <stdio.h>
main()
{
}