Ask Question
3 May, 08:16

Which is not a C repetition statement?

a) while

b) do ... while

c) for

d) do ... for

+1
Answers (1)
  1. 3 May, 09:28
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers