answersLogoWhite

0


Best Answer

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

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Three kinds of iteration structures in c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Why is c structured programming language?

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


What is iterations in c language?

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


What are the kinds of hih-level language?

C,c++,java


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.


Is 'c' a structured language?

Yes, in C, you can use the standard programming structures (sequence, selection, repetition).

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


Which of the structures is an impossible covalently bonded molecule?

The structures for this question weren't provided for me to choose from. The answer would be C. The structure has the combination in the middle C, C, O,H with three H's around the first C and one at the top of the second C.


What is iterations in c language?

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


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.


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 */


C program for comparison of dates using structures?

C program for comparison of dates using structures


How many resonance structures does NO3- have?

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


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.


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


What has the author Thomas Plum written?

Thomas Plum has written: 'Learning to program in C' 'Efficient C' 'Reliable data structures in C' -- subject(s): C (Computer program language), Data structures (Computer science)