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

Day calculate b/w two dates, Write a function that calculates the number of...

Write a function that calculates the number of elapsed days between two dates. For example the days between Feb 3, 1970 and June 21, 1980? Becareful for the Leap year.

Palindrome, A palindrome is a string that reads the same from both the ends...

A palindrome is a string that reads the same from both the ends. Given a string S convert it to a palindrome by doing character replacement. Your task is to convert S to palindrome

Memory management system, 1. Basic Heap: Each memory location in our model ...

1. Basic Heap: Each memory location in our model of the RAM will be an instance of type Memory: 2. typedef union Memory_u Memory; 3. union Memory_u{ 4. char character;

Define difference among delete and delete[]?, when you allocate memory with...

when you allocate memory with new[], you ought to free the memory via delete[]. While you allocate memory along 'new', then use 'delete' with no the brackets. You employ new[] to a

PROGRAM, TO CONVERT A NUMBER OR A DIGIT INTO ALPHABET

TO CONVERT A NUMBER OR A DIGIT INTO ALPHABET

Program in rpeanut that fills the graphics display, Write a program that co...

Write a program that counts from 0 to 99 and prints these numbers to the terminal ie it prints 00, 01, 02, 03, 04, 05, ....,99. Graphics 1. Write a program in rPeANUt that

String, A string is said to be "Beautiful"€, if it contains only non repet...

A string is said to be "Beautiful"€, if it contains only non repetitive alphabets

Example for external storage class - computer programming, Example for exte...

Example for external storage class - computer programming? extern double sin (double); In a function prototype, for the sin() function its function definition ~ we can write

Srand and rand(), Mention clearly about srand and rand().

Mention clearly about srand and rand().

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