answersLogoWhite

0

Iteration structures are also called as loops. The following are the loops available in c.

1. for (initialization; condition; increase/decrese) statement

2. while (expression) statement

3. do statement while (condition)

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

Why is c structured programming language?

Because it supports the three basic programmic structure: sequence, selection, iteration.


What are the three selection structures available in C plus plus?

if while switch


What is iterations in c language?

An iteration is an instance of a structured loop statement (for, while or do-while).


What is the difference between dowhile loop dountil?

A do-while loop checks its termination condition before each iteration, including the first; a do-until checks after each iteration, so that the first iteration occurs before the first check. The C language uses the word "while" for both types of loop, using the placement of the condition to control its timing:C do-while:while (condition) { /* condition checked before first loop iteration */... loop contents}C do-until:do {... loop contents} while (condition); /* condition not checked until after first loop iteration */


How do stuctures in C and C plus plus differ?

Structures in C and C++ differ in that C structures do not have an automatic typdef associated with them.


C program for comparison of dates using structures?

C program for comparison of dates using structures


What is the meaning of continue in C programming?

The continue statement means to branch to the end of the smallest enclosing loop and continue with the next iteration, if there is one.


What are the kinds of hih-level language?

C,c++,java


How many resonance structures does NO3- have?

there are three resonating structures of H2CO3 OH+-------C------O+-------oh+


What are the kinds of fire Kinds of fire extinguisher?

A,B,C,D and K


What is file structures in C plus plus?

As far as C++ is concerned files do not have structures, they are simply raw data streams. It's entirely down to the programmer to determine what structures exist within the file and to interpret the data accordingly. C++ cannot do it for you.


How is c plus plus built?

C++ object oriented programming (OOP) language and supports three kinds of object types 1) Fundamental Types. 2) Derived Types. 3) Class Types.