Give example of the for loop, C/C++ Programming

Assignment Help:

The for Loop

For loop is the controlled form of loop. The general format of this :

for( initialize ; test ; update)

                 {

                    statements;

                                :

                                :

                 }

The initialize part is implemented only once, before entering the loop. If test evaluates to false then the next statement after for loop is implemented. If the test evaluates to true then the updating takes place.

 

e.g.

for( int i = 0; i< 10; i++) // In C++ you can declare a

variable here.

                 {

                                cout << i;

                 }

This will print from 0 to 10.

The expressions in the for loop are optional but the semi-colons are essential, i.e.,

 

                for( ; ; )

                 {

                                cout<<"hello";

                 }

 

This  is an infinite loop, with no expression.

 

e.g.

                int i = 0

 

 

for(; i< 10; )

                 {

                                cout << i;

                                i++;

                 }

 

This is equivalent to our example, which printed from 0 to 9. More than one expression can also be inside the for loop by separating them using commas.

 

e.g.

                for( int i = 0, int j=10; i< 10 && y>0 ; i++, y--)

                 {

                                cout << i;

                 }

 


Related Discussions:- Give example of the for loop

C program for even & odd no in any matrices , C Program for EVEN & ODD NO I...

C Program for EVEN & ODD NO IN ANY MATRICES #include stdio.h> #include conio.h> void main() {           int a[100][100];           int i=0,j=0,r,c,even=0,odd=0;

Area , Write a program to find the area under the curve y = f(x) between x ...

Write a program to find the area under the curve y = f(x) between x = a and x = b, integrate y = f(x) between the limits of a and b.

Spaning tree , what is the function of spanning tree in graph algorithm?

what is the function of spanning tree in graph algorithm?

Explain the rules for overloading an operator, Rules for overloading an ope...

Rules for overloading an operator This summarizes the most significant points you need to know in order to do operator function overloading. The only operators you may o

Padovan string ., #questio#A Padovan string P(n) for a natural number n is ...

#questio#A Padovan string P(n) for a natural number n is defined as: P(0) = ‘X’ P(1) = ‘Y’ P(2) = ‘Z’ P(n) = P(n-2) + P(n-3), n>2 where + denotes string concate

Define four facilities provided by c language preprocessor, Define Four Fac...

Define Four Facilities Provided by C Language Preprocessor? The C language preprocessor provides four separate facilities that you can use as you see fit:   Inclusion

Charity Ball Organizer, Charity Ball Organizer Many charities support g...

Charity Ball Organizer Many charities support good causes, but one of the difficulties each of them has is organizing their fundraising events. After nearly a semester of C pro

C program to convert time in 24 hour format to 12., Aim: To implement a pr...

Aim: To implement a program to convert time in 24 hour format to 12 hour format. Code:                       #include #include #include class time24 {

Algorithms, write an algorithm for multiplication of two sparse matrices us...

write an algorithm for multiplication of two sparse matrices using linked lists

Overloading binary operators using friend function, Overloading Binary Oper...

Overloading Binary Operators Using Friend Function class SI {float i,p,n,r,a; public: SI(){}; SI(int gp,int gn, int gr); void putdata(void); friend SI operato

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd