Ask Question

Which is not a C repetition statement?

a) while

b) do ... while

c) for

d) do ... for

+2
Answers (1)
  1. 21 July, 18:45
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers