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

How many decameters are there in 4.5 kilometers?
What is 11.3333333333 as a mixed number?
reliable results are results that can be... A: communicated B: evaluated C: duplicated
lucie can walk about 3 4/5 miles each hour. about how far can she walk in 2 hours 45 minutes?
Tamara is interested in doing a quantitative research study to determine the most significant causes of public speaking anxiety among college students. this stu
Which type of map would give information about recent volcanic eruptions in an area?
If you crossed two heterozygous yellow-seed pea plants (genotypes aa), the relative frequency of:
if the scale used on the blue print is 2in = 3ft. what is the measure of the door that is 5in on the blue
The roots of $3x^2 - 4x + 15 = 0$ are the same as the roots of $x^2 + bx + c = 0,$ for some constants $b$ and $c.$ Find the ordered pair $(b,c).$
When is implementation of a product backlog item considered complete?