spookymod3351 spookymod3351
  • 03-10-2019
  • Computers and Technology
contestada

Which is not a C repetition statement?

a) while

b) do…while

c) for

d) do…for

Respuesta :

tanoli
tanoli tanoli
  • 08-10-2019

Answer:

d) do..for

Explanation:

In C there are 3 types of loops.

1) For Loop

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

   cout<<i;

}

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);

Answer Link

Otras preguntas

A ball is thrown vertically upward from a height of 6 feet with an initial velocity of 41 feet per second. how high will the ball go? (round your answer to two
Which of these processes must precede fertilization?
When two or more nations engage in free trade how is the standard living improved in the participating countries
How do you write 0.74 as a fraction in simplest form?
Term used to describe the efforts of congress to expand on president johnson's reconstruction plans
What multiply what equals 26 using numbers between 2 and 9?
Pairs of angles formed when a transversal intersects two lines so that they lie on the same side of the transversal and on the same side of the lines are called
The sum of two numbers is -12. One of the numbers is 4. What is the other number?
A second number is 5 less than a first number. a third number is three times the first number. if the sum of the three numbers is 555, find the numbers. (a) 110
PLEASE HELP!!! WILL MARK BRAINLIEST!!!