3) How many times the sentence "C statement executed " is printed? int x; for (x=-1; x<=10; x++) ( if (x < 5) continue;
Posted: Mon Jun 06, 2022 4:53 pm
3) How many times the sentence "C statement executed " is printed? int x; for (x=-1; x<=10; x++) ( if (x < 5) continue; else break; printf ("C statement executed \n "); b0 times c. 11 times a. 10 times e. 5 times