Ask Question
14 March, 20:05

Which is not a C repetition statement?

a) while

b) do ... while

c) for

d) do ... for

+2
Answers (1)
  1. 14 March, 23:12
    0
    d) do ... for

    Explanation:

    In C there are 3 types of loops.

    1) For Loop

    for (int i=0; i<10; i++) {

    cout<
    }

    2) While Loop

    int i=0;

    while (i<10) {

    cout << i;

    i++;

    }

    3) Do While Loop

    int i=0;

    do {

    cout<< i;

    i++;

    } while (i<10);
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Which is not a C repetition statement? a) while b) do ... while c) for d) do ... for ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers