Define the syntax of for loop, Programming Languages

Assignment Help:

Define the Syntax of FOR Loop?

The universal form of this statement is

for(initialization;condition;increment/decrement)

            {

statements;

            }

The Initialization refers to the assignment of control variable and the control variable is any variable that is used in the for loop. The condition is a logical or relational expression for testing the value of control variable. If the condition is true, then the body of the loop will get executed, otherwise the control will come to the statement that immediately follows the loop. formerly the loop gets executed the control is transferred back to the statement after evaluating the last statement in the loop. The control variable is then decremented or incremented and the new value of the variable is tested to see whether the condition is satisfied. Every expression should be seperated using semicolon.

For illustration

for(i=0;i<=10;i++)

{

sum=sum+i;

}

The expression 'for(;;) is as well valid, but this loop will execute infinite times. A Nested for loops are allowed in C programs.

For instance

for(i=0;i

{

for(j=0;j<=n;j++)

{

sum=sum+i;

}

}

This can as well be written as

for(i=0, j=0;i

{

sum=sum+i;

}


Related Discussions:- Define the syntax of for loop

I need help in travel and photo sharing website, Vacation Envy - Travel and...

Vacation Envy - Travel and Photo Sharing Website Site Overview- Vacation Envy is a travel as well as photo-sharing site. Make your travel map, share photos and show off al

Write a program that makes a drawing of a skyscraper, 1. Write a program th...

1. Write a program that figures out how long it will take to pay off a credit card by making payments of $10 each month. Take care to avoid infinite loops. (How would a bank preven

Software tools for structuring complex program, This assignment begins soft...

This assignment begins software tools and techniques for structuring complex programs. Use it to become familiar with these facilities, and ensure you use the speci?ed concepts in

Java project, NOTE: You will only submit the University.java and EmptyFileE...

NOTE: You will only submit the University.java and EmptyFileException.java files (inside P3.zip/tar) NOTE on null objects:. From Project 1: Since the array of students in the Cou

Cookies management with perl, One of the main strengths of the Perl program...

One of the main strengths of the Perl programming language are its powerful text manipulation features. In this assignment, you will put them to  use for writing a Perl program tha

How would you install a multiple layered security product, Problem: (i)...

Problem: (i) All Security authentication mechanism that run on the TRU64 Unix Operating system run under the Security Integration Architecture ( SIA ) layer. Explain with diag

Write and test a simple perl program on the linux platform, Write and test ...

Write and test a simple perl program on the linux platform.  You may use any linux system you wish, including the Suse linux installed in the lab. Activities. Note:  to r

Design a mobile web browser..., HOW CAN I DESIGN A MOBILE WEB BROWSER LIKE ...

HOW CAN I DESIGN A MOBILE WEB BROWSER LIKE OPERA MINI. USING VISUAL BASIC? HELP ME.

Explain inheritance and polymorphism in lingo programming, Question: (a...

Question: (a) Explain the concepts of Inheritance and Polymorphism in Lingo programming. (b) Write short descriptions on parent scripts and child objects in Lingo object

Create a linux shell, Create a linux shell (in other words, write a C/C++ p...

Create a linux shell (in other words, write a C/C++ program) that will recursively prompt for input from the user. The shell should prompt as yourRollNumber-currentDirector

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