If you turned in a solution in class, you already got credit for this assignment. Otherwise, answer the following and submit to the E5 box on Canvas.
Exercise 5
Show the instruction flowchart for the following function:
void v(int a){
if (a < 2){
while (c < 3){
c++;
}
if (b > 3){
c = 12;
}
}
return;
}