What is the output of the following code? int main() { int a =2; int b = 2; int c = 15; while (a < 10) { a = a + 1; if ( (b *a) < c) continue; cout << a << ” “; } return 0;}
Expert Answer
An answer will be send to you shortly. . . . .
What is the output of the following code? int main() { int a =2; int b = 2; int c = 15; while (a < 10) { a = a + 1; if ( (b *a) < c) continue; cout << a << ” “; } return 0;}
An answer will be send to you shortly. . . . .