answersLogoWhite

0

int main (int argc, char **argv)

{

int i=0;

do printf ("%2d. %s\n", i, argv[i]); while (++i<argc);

return 0;

}

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Is for loop is faster than while loop in turbo c plus plus compiler?

No, why did you think so?


For loop program turbo c making a right triangle?

yes


What is the shortcut key in laptop to stop infinite loop of turbo c?

567


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.


Is do while loop in c is exit controoled loop?

yes


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 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.


What is a while statement in turbo c plus plus?

A while statement is one type of looping statement. by which we can start a loop in our programs. while loop is precondition checking statement, because it first check its condition then loop will go to its body part. EX. while(i&gt;0) { //body part } here when i will &gt;0 then it will check it body part and execute it and display result.


Do while in turbo c?

usable


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.


What are the three looping statement in turbo C?

for,while,do while