void Test() { int i,j; for (i=0; i<10; i++) { if (i > 5) continue; for (j=5;j>=0; j–) { if (i == j) exit; std::cout « i « ” ” « j; (a) What do the continue and exit statements do in the context of this particular function? (b) What text does this function print? Show transcribed image text void Test() { int i,j; for (i=0; i 5) continue; for (j=5;j>=0; j–) { if (i == j) exit; std::cout « i « ” ” « j; (a) What do the continue and exit statements do in the context of this particular function? (b) What text does this function print?
Expert Answer
Answer to void Test() { int i,j; for (i=0; i 5) continue; for (j=5;j>=0; j–) { if (i == j) exit; std::cout « i « ” ” « j; (a) …