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 program for decision structure , Create the following program or p...

Create the following program or propose one of your own. The program must include at least one of each of the following. Decision structure Repetitive structure fu

Minimum Shelf, At a shop of marbles, packs of marbles are prepared. Packets...

At a shop of marbles, packs of marbles are prepared. Packets are named A, B, C, D, E …….. All packets are kept in a VERTICAL SHELF in random order. Any numbers of packets with thes

Need an indicator, Need an indicator Project Description: Need an ind...

Need an indicator Project Description: Need an indicator which indicates target and trailing sl after entering trades. Skills required are C Programming, C++ Programming,

Loop, wap to count the numof string present in a word

wap to count the numof string present in a word

Inline functions, Inline functions, C++ provides inline functions to help r...

Inline functions, C++ provides inline functions to help reduce function_call overhead especially for small functions. The qualifier inline before function's return type in the f

Functions and stack frame, Each function has its own stack frame between %f...

Each function has its own stack frame between %fp and %sp. Let Caller calls Callee. Then Caller's %sp becomes callee's %fp, and callee's %sp set to be a new value (a smaller one be

C program to design text styles, Program to design text styles: Write ...

Program to design text styles: Write a C program to design different text style char *fname[] = { "DEFAULT font",                                   "TRIPLEX font",

Z transformer, how to write code for z transformer

how to write code for z transformer

Doubt!, find the greater of the two variables, without using conditional lo...

find the greater of the two variables, without using conditional loops or ternary operators?

Can i overload operator == so it allow me compare two char[], Q: Can I over...

Q: Can I overload operator == so it allow me compare two char[] by a string comparison? A: No: at least one operand of particular overloaded operator should be of some user-defi

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