0
/ 10
How many times does the loop execute? That is, how many times is hello()
called?
for (int i = 0; !done(); i++) { hello(); }
How many times does the loop execute? That is, how many times is hello()
called?
for (int i = 0; !done(); i++) {
hello();
}
Your feedback will appear here when you check your answer.