what is use of for loop?

Answers were Sorted based on User's Feedback



what is use of for loop?..

Answer / geetha

for loop use is more then one calculation or process can be
performed, for example:
for(int i=0;i<5;i++)
{
printf("%d",i);
}
In the above example the printf statement can be excuted in
five times.
Output:0 1 2 3 4

Is This Answer Correct ?    6 Yes 0 No

what is use of for loop?..

Answer / swathi

it is a loop which can have 3 conditions like
1)initiating a value to a variable
2)incrementation/decrementation
3)and a specific condition

Is This Answer Correct ?    3 Yes 0 No

what is use of for loop?..

Answer / kannan.p

for loop use is one are more then printing in printup
statements.

Is This Answer Correct ?    2 Yes 1 No

what is use of for loop?..

Answer / keshav.gadde

for loop is executed as long as condition is true and
process the loop until condition is fail.

Is This Answer Correct ?    1 Yes 0 No

what is use of for loop?..

Answer / raj gunda

for is used to 'finite' number of times repeat the
statements

Is This Answer Correct ?    1 Yes 0 No

what is use of for loop?..

Answer / murugasundari

for loop is used to repeate the process for certain number
of time s known.

Is This Answer Correct ?    2 Yes 2 No

what is use of for loop?..

Answer / gunasekhar

for the repeated eecution of a statement or a block we use
for loop.

Is This Answer Correct ?    0 Yes 0 No

what is use of for loop?..

Answer / madhu

testing the condition more than one time.when it gets true
the loop will be finished.

Is This Answer Correct ?    1 Yes 1 No

what is use of for loop?..

Answer / narendra singh

to execute group of code ,selection of code again and again

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More STL Interview Questions

Define the terms: field, record, table and database

5 Answers  


What is a standard template library (stl)?

0 Answers  


please visit this site you'll find my question this is my homework please answer it if you can http://easyscience.org/ib/lofiversion/index.php/t36168.html

0 Answers  


wap in c++ which accept a integer array and its size as argument and replaces element having even values with its half and element having odd values with twice its value

1 Answers  


what is use of for loop?

9 Answers   Wipro,






Describe the elements of Microsoft Word screen. Write down steps for creating, saving, retrieving, editing and printing a document.

2 Answers  


help me i need a c++ program which takes sequesnce of characters and outputed sequence of their token taypes, work same compiler in lexical analysis phase

0 Answers  


how to overload << and >> operator in c++

3 Answers   Wipro,


Is stl open source?

0 Answers  


differentiate between private, public and protected data members of the class using example.

1 Answers  


Write a program to print the swapping in two no and using three variable.

5 Answers   Broadridge,


How the STL's are implemented, What the difference between templates and STL?

1 Answers   Symphony,


Categories