After testing the functionality of the the program, do code inspections of
each other's code. Follow the code inspection process described by Ganssle on
pages 18-20 of "The Art of Designing Embedded Systems".
Each group should paraphrase each section of their code. After paraphrasing
each region, the other group should discuss the implementation of the
region to identify any major or minor issues. For any suggestions that are
found, add comments to the code to identify them. Use the format in the
following example for inspection comments:
/**
* INSPECTION COMMENTS
* This code could potentially cause a divide by zero error.
*/
int divide( int a, int b ) {
return a / b;
}