please see attachment for the rest of the questions thanks
Overview
This hands-on lab allows you to follow and experiment with the critical steps of developing a program
including the program description, analysis, test plan, design, and implementation with C code.
Program Description
This program will sum two integer numbers to yield a third integer number. Once the calculations are
made the results of all the numbers will be printed to the output screen.
Analysis
We will use sequential programming statements.
We will define 3 integer numbers: a, b, c.
c will store the sum of a and b.
Test Plan
To understand this program the following input numbers could be used for testing:
a = 10
b = 20
c = a + b = 10 + 20 = 30
In table format the following results are expected:
Run # Input a Input b





