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

Create a minimum of fifteen functions, Purpose For this assignment you ...

Purpose For this assignment you will need to create either a function list or a record series for a CRCRS. Instructions Note: Complete only one of the two assignment op

Skilled programmer is required to build a standalone module, A skilled prog...

A skilled programmer is required to build a standalone module to extract, parse and store in database tables, word count data from web pages and RSS feeds. The module can take R

Evaluate the credit worthiness of a client, Write a C++ program that can be...

Write a C++ program that can be used to evaluate the credit worthiness of a client. The program reads the credit limit and the price and quantity of the item to be purchased by the

Erp, How does an ERP System facilitates better decision making?

How does an ERP System facilitates better decision making?

Pointer to an array, Write a method (belonging to the TermStructure class) ...

Write a method (belonging to the TermStructure class) that takes a pointer to an array of bonds and an integer, representing the number of bonds in the array as arguments, and esti

Program decision making instructions, Within programs we very often want to...

Within programs we very often want to execute a different section of code, depending upon various conditions within C the If statement is used to achieve this. The If statement con

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