answersLogoWhite

0

What is the most basic loop in c?

Updated: 8/11/2023
User Avatar

Wiki User

14y ago

Best Answer
Answer

the answer to this question would vary from programmer to programmer... Basically for the embedded system programmer the while loop is more important and would be considered as basic. However for the application programmer the for loop is always a better option.

Answer

These are: LABEL-goto, while, for, do-while, and recursion, of course.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the most basic loop in c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

C program to print numbers 1 to n?

how do we use loops in c plus plus programing and what are basic differences between do,for and while loop


Which loop is also called an exit-condition loop in C programming?

The do while loop is also called an exit condition loop in c, c++, and java.


In C which loop is embedded within another loop?

The nested loop.


Definition of do loop while in visual basic?

There are 3 type of loop 1 is for loop 2 is loop while 3 is loop untile


What is the loop of henley?

The loop of Henly is the basic functioning unit of the kidney.


Is do while loop in c is exit controoled loop?

yes


What is odd loop in 'C' program?

odd loop means at least the loop execute once.


What is the definition of 'nested' in C programming?

In C a structure within a structure is called nested. For example, you can embed a while loop in another while loop or for loop in a for loop or an if statement in another if statement.


Do-while loop in c?

Available.


Does 'for loop' works in C plus plus?

In C++, a for loop is structured as follows: for( int index = 0; index < 10; ++i ) { //do something }


What are the differences between Do While and For loops in C?

In short, a for loop declares an variable and assigns it a value, has an argument, and has an update. A while loop only has an argument. More Detail... in C++, which is very close to C an example while loop is; while(i


What is the difference between a do while loop and a for loop in c?

the counter variable cannot be initialized in while loop before entering into the block.