SlideShare a Scribd company logo
1 of 36
Introducing to Loops
Goals
By the end of this unit, you should
  understand …
• … basic loop concepts, including pretest &
  posttest loops, loop initialization ,condition
  and increment.
• … how to program a while loop.
• … how to program a do-while loop.
• … how to program a for loops.
What is a loop?
• A loop is a programming structure that
  allows an action to repeat until the
  program meets a given condition.
• After each iteration of a loop, the loop
  checks against a loop control expression
  to see if the program met the given
  condition. If it did, the loop stops. If not,
  the loop moves on to the next iteration.
Types of Loops
• C supports two categories of loops,
  based on where the program tests the
  condition:
  – Pretest Loops
  – Post-test Loops
Pretest Loops
• With each iteration, the program tests the
  condition first before executing the loop’s
  block.
• If the condition results to true, the loop
  continues and executes the block; if the
  condition results to false, the loop
  terminates.
• With a pretest loop, there is a chance the
  loop may never execute once in the program.
Post-Test Loops
• With each iteration, the program
  executes the loop’s block first and tests
  against a condition.
• If the condition tests to true, the loop
  continues and executes another
  iteration; if the condition tests to false,
  the loop terminates.
• With a post-test loop, the loop will
  always execute at least once!
Pretest vs. Post-Test Loops




   from Figure 6-2 in Forouzan & Gilberg, p. 305
Variable Initialization
• int i=5;
• I have initialized the variable i with a value i=5;
Updating a Loop
• A loop update is what happens inside a
  loop’s block that eventually causes the
  loop to satisfy the condition, thus ending
  the loop.
• Updating happens during each loop
  iteration.
• Without a loop update, the loop would be
  an infinite loop.
Initialization & Updating
Loop Comparison




from Table 6-1 in Forouzan & Gilberg, p. 308
C Implementation of Loops
• Pretest Loops
  – while Loop
  – for Loop
• Post-test Loop
  – do … while loop
• All loops in C execute so long as a
  condition evaluates to true and terminate
  when the condition evaluates to false.
The while Loop




from Figure 6-11 in Forouzan & Gilberg, p. 311
Example of while loop
#include<stdio.h>
#include<conio.h>
                         If we input value
int main()
                         of end as 10 then
{                        output will be 1 to
int start, end;          10
scanf("%d",&end);
start = 0;
 while ( start < end)
{
start++;
printf("%dn", start);
 }
return 0;
Example
#include<stdio.h>             The output of the postfix and
                              prefix increment example will
int main()                    look like this:
 { int i;                      1
                               2
i = 0;                         3
                               4
while(i++ < 5)
                               5
{ printf("%dn", i);
}                              1
printf("n");                  2
                               3
 i = 0;                        4
while(++i < 5)
 { printf("%dn", i); }
return 0; }
The for Loop
• A for loop is a pretest loop that includes three
  expressions in its header:
   –   Loop initialization statement
   –   Limit test expression(condition)
   –   Loop update statement


• The for loop is often used as a start-controlled
  loop since we can accurately predict the
  maximum number of iterations.
The for Loop
Comparing while with for
Comparing while with for
i = 1;               sum = 0;
sum =0;              for (i = 1; i <= 20; i++)
while (i <= 20)      {
{                      scanf(“%d”, &a);
  scanf(“%d”, &a);     sum = sum+a;
  sum = sum+a;       }//end for
  i++
}//end while
 The while Loop            The for Loop
Example of for loop
main ( )
{
int p, n, count ;
float r, si ;
for ( count = 1 ; count <= 3 ; count = count + 1 )
{
printf ( "Enter values of p, n, and r " ) ;
scanf ( "%d %d %f", &p, &n, &r ) ;
si = (p * n * r) / 100 ;
printf ( "Simple Interest = Rs.%fn", si ) ;
}
}
Example
#include <stdio.h>
 #include<conio.h>
void main()
{
   int i = 0, j = 8;
   printf("Times 8 Tablen");
   for(i = 0; i <= 12; i = i + 1)
   {
    printf("%d x %d = %dn", i, j, j*i);
    }
    printf("n");
}
Nested for Loops
• We can nest any statement, even
  another for loop, inside the body of
  a parent for loop.
• When we nest a child for loop, it
  iterates all of it’s cycles for each
  iteration of the parent.
Example of nested for loop
• /* Demonstration of nested loops */
                                              When you run this
main( )                                       program you will get the
{                                             following output:
                                              r = 1 c = 1 sum = 2
int r, c, sum ;                               r = 1 c = 2 sum = 3
                                              r = 2 c = 1 sum = 3
for ( r = 1 ; r <= 3 ; r++ ) /* outer loop */ r = 2 c = 2 sum = 4
{                                             r = 3 c = 1 sum = 4
                                              r = 3 c = 2 sum = 5
for ( c = 1 ; c <= 2 ; c++ ) /* inner loop */
{
sum = r + c ;
printf ( "r = %d c = %d sum = %dn", r, c, sum ) ;
}
}
}
The do … while Loop
• C implements a post-test loop using a
  structure called a do … while loop.
• In the do … while, the loop begins with
  the keyword do, followed by the body,
  followed by the keyword while and the
  loop expression.
• A semi-colon (;) follows the loop
  expression.
The do … while Loop
Example of do-while
/* Execution of a loop an unknown number of time*/
main( )
{
                                     Output:
char another ;                       Enter a number 5
int num ;                            square of 5 is 25
                                     Want to enter another number y/n y
do                                   Enter a number 7
                                     square of 7 is 49
{                                    Want to enter another number y/n n
printf ( "Enter a number " ) ;
scanf ( "%d", &num ) ;
printf ( "square of %d is %d", num, num * num ) ;
printf ( "nWant to enter another number y/n " ) ;
scanf ( " %c", &another ) ;
} while ( another == 'y' ) ;}
Same using for loop
/* odd loop using a for loop */
main( )
{
char another = 'y' ;
int num ;
for ( ; another == 'y' ; )
{
printf ( "Enter a number " ) ;
scanf ( "%d", &num ) ;
printf ( "square of %d is %d", num, num * num ) ;
printf ( "nWant to enter another number y/n " ) ;
scanf ( " %c", &another ) ;
Same using while loop
/* odd loop using a while loop */
main( )
{
char another = 'y' ;
int num ;
while ( another == 'y' )
{
printf ( "Enter a number " ) ;
scanf ( "%d", &num ) ;
printf ( "square of %d is %d", num, num * num ) ;
printf ( "nWant to enter another number y/n " ) ;
scanf ( " %c", &another ) ;
}}
Comparing
do … while with while
The break Statement in Loops
• We often come across situations where we want
  to jump out of a loop instantly, without waiting to
  get back to the conditional test.
• The keyword break allows us to do this.
• When break is encountered inside any loop,
  control automatically passes to the first
  statement after the loop.
Example of break
• Write a program to determine whether a number is
  prime or not. A prime number is one, which is
  divisible only by 1 or itself.
• All we have to do to test whether a number is prime or
  not, is to divide it successively by all numbers from 2 to
  one less than itself.
• If remainder of any of these divisions is zero, the number
  is not a prime. If no division yields a zero then the
  number is a prime number.
Example
main( )
{int num, i ;
printf ( "Enter a number " ) ;
scanf ( "%d", &num ) ;
i=2;
while ( i <= num - 1 )
{if ( num % i == 0 )
{
printf ( "Not a prime number" ) ;
break ;
}
i++ ;
} if ( i == num )
printf ( "Prime number" ) ;
}
Example
                          main( )
The keyword break
  breaks the              {
  control only            int i = 1 , j = 1 ;
  from the while in       while ( i++ <= 100 )
  which it is placed.     {
                          while ( j++ <= 200 )
                          {
                          if ( j == 150 )
                          break ;
                          else
                          printf ( "%d %dn", i, j ) ;
                          }
                          }
                          }
The continue Statement
• In some programming situations we want to take
  the control to the beginning of the loop,
  bypassing the statements inside the loop,
   which have not yet been executed. The keyword
  continue allows us to do this.
• When continue is encountered inside any
  loop, control automatically passes to the
  beginning of the loop.
Example of continue statement
main( )
{
                                 The output of the
int i, j ;
                                 above program would
for ( i = 1 ; i <= 2 ; i++ )     be...
{                                12
for ( j = 1 ; j <= 2 ; j++ )     21
{
if ( i == j )
continue ;
printf ( "n%d %dn", i, j ) ;
}
}

More Related Content

What's hot

C programs
C programsC programs
C programs
Minu S
 
Practical write a c program to reverse a given number
Practical write a c program to reverse a given numberPractical write a c program to reverse a given number
Practical write a c program to reverse a given number
Mainak Sasmal
 

What's hot (20)

C++ control loops
C++ control loopsC++ control loops
C++ control loops
 
Nested loops
Nested loopsNested loops
Nested loops
 
For Loop
For LoopFor Loop
For Loop
 
C Language - Switch and For Loop
C Language - Switch and For LoopC Language - Switch and For Loop
C Language - Switch and For Loop
 
7 functions
7  functions7  functions
7 functions
 
Looping Statement And Flow Chart
 Looping Statement And Flow Chart Looping Statement And Flow Chart
Looping Statement And Flow Chart
 
The solution manual of c by robin
The solution manual of c by robinThe solution manual of c by robin
The solution manual of c by robin
 
Programming ppt files (final)
Programming ppt files (final)Programming ppt files (final)
Programming ppt files (final)
 
C programs
C programsC programs
C programs
 
8 arrays and pointers
8  arrays and pointers8  arrays and pointers
8 arrays and pointers
 
Decision Making and Looping
Decision Making and LoopingDecision Making and Looping
Decision Making and Looping
 
88 c-programs
88 c-programs88 c-programs
88 c-programs
 
4 operators, expressions &amp; statements
4  operators, expressions &amp; statements4  operators, expressions &amp; statements
4 operators, expressions &amp; statements
 
Unit2 C
Unit2 CUnit2 C
Unit2 C
 
Unit 5 Foc
Unit 5 FocUnit 5 Foc
Unit 5 Foc
 
Practical write a c program to reverse a given number
Practical write a c program to reverse a given numberPractical write a c program to reverse a given number
Practical write a c program to reverse a given number
 
Cpds lab
Cpds labCpds lab
Cpds lab
 
Ansi c
Ansi cAnsi c
Ansi c
 
C PROGRAMS
C PROGRAMSC PROGRAMS
C PROGRAMS
 
Introduction to c part -1
Introduction to c   part -1Introduction to c   part -1
Introduction to c part -1
 

Viewers also liked (8)

Cmp 104
Cmp 104Cmp 104
Cmp 104
 
Programming in c++
Programming in c++Programming in c++
Programming in c++
 
04 control structures 1
04 control structures 104 control structures 1
04 control structures 1
 
Control structures in C++ Programming Language
Control structures in C++ Programming LanguageControl structures in C++ Programming Language
Control structures in C++ Programming Language
 
Control Structures in Visual Basic
Control Structures in  Visual BasicControl Structures in  Visual Basic
Control Structures in Visual Basic
 
Control statements
Control statementsControl statements
Control statements
 
Loops c++
Loops c++Loops c++
Loops c++
 
C++ programming
C++ programmingC++ programming
C++ programming
 

Similar to 12 lec 12 loop

Dti2143 chap 4 control statement part 2
Dti2143 chap 4 control statement part 2Dti2143 chap 4 control statement part 2
Dti2143 chap 4 control statement part 2
alish sha
 

Similar to 12 lec 12 loop (20)

Loops in c
Loops in cLoops in c
Loops in c
 
Loop control structure
Loop control structureLoop control structure
Loop control structure
 
COM1407: Program Control Structures – Repetition and Loops
COM1407: Program Control Structures – Repetition and Loops COM1407: Program Control Structures – Repetition and Loops
COM1407: Program Control Structures – Repetition and Loops
 
Cse115 lecture08repetitionstructures part02
Cse115 lecture08repetitionstructures part02Cse115 lecture08repetitionstructures part02
Cse115 lecture08repetitionstructures part02
 
Control structure of c
Control structure of cControl structure of c
Control structure of c
 
Workbook_2_Problem_Solving_and_programming.pdf
Workbook_2_Problem_Solving_and_programming.pdfWorkbook_2_Problem_Solving_and_programming.pdf
Workbook_2_Problem_Solving_and_programming.pdf
 
Programming fundamental 02
Programming fundamental 02Programming fundamental 02
Programming fundamental 02
 
Control Structures in C
Control Structures in CControl Structures in C
Control Structures in C
 
Chapter06.PPT
Chapter06.PPTChapter06.PPT
Chapter06.PPT
 
Dti2143 chap 4 control statement part 2
Dti2143 chap 4 control statement part 2Dti2143 chap 4 control statement part 2
Dti2143 chap 4 control statement part 2
 
Learning C programming - from lynxbee.com
Learning C programming - from lynxbee.comLearning C programming - from lynxbee.com
Learning C programming - from lynxbee.com
 
Session 3
Session 3Session 3
Session 3
 
Vcs5
Vcs5Vcs5
Vcs5
 
C programming Control Structure.pptx
C programming Control Structure.pptxC programming Control Structure.pptx
C programming Control Structure.pptx
 
Ch6 Loops
Ch6 LoopsCh6 Loops
Ch6 Loops
 
Computer programming subject notes. Quick easy notes for C Programming.Cheat ...
Computer programming subject notes. Quick easy notes for C Programming.Cheat ...Computer programming subject notes. Quick easy notes for C Programming.Cheat ...
Computer programming subject notes. Quick easy notes for C Programming.Cheat ...
 
1 introduction to c program
1 introduction to c program1 introduction to c program
1 introduction to c program
 
What is c
What is cWhat is c
What is c
 
Understand more about C
Understand more about CUnderstand more about C
Understand more about C
 
CONTROL FLOW in C.pptx
CONTROL FLOW in C.pptxCONTROL FLOW in C.pptx
CONTROL FLOW in C.pptx
 

More from kapil078

11 lec 11 storage class
11 lec 11 storage class11 lec 11 storage class
11 lec 11 storage class
kapil078
 
Btech 1st yr midterm 1st
Btech 1st yr midterm 1stBtech 1st yr midterm 1st
Btech 1st yr midterm 1st
kapil078
 
Cmp104 lec 7 algorithm and flowcharts
Cmp104 lec 7 algorithm and flowchartsCmp104 lec 7 algorithm and flowcharts
Cmp104 lec 7 algorithm and flowcharts
kapil078
 
Cmp104 lec 6 computer lang
Cmp104 lec 6 computer langCmp104 lec 6 computer lang
Cmp104 lec 6 computer lang
kapil078
 
Cmp104 lec 2 number system
Cmp104 lec 2 number systemCmp104 lec 2 number system
Cmp104 lec 2 number system
kapil078
 
Cmp104 lec 6 computer lang
Cmp104 lec 6 computer langCmp104 lec 6 computer lang
Cmp104 lec 6 computer lang
kapil078
 
Cmp104 lec 4 types of computer
Cmp104 lec 4 types of computerCmp104 lec 4 types of computer
Cmp104 lec 4 types of computer
kapil078
 
Cmp104 lec 3 component of computer
Cmp104 lec 3 component of computerCmp104 lec 3 component of computer
Cmp104 lec 3 component of computer
kapil078
 
Cmp104 lec 1
Cmp104 lec 1Cmp104 lec 1
Cmp104 lec 1
kapil078
 
cmp104 lec 8
cmp104 lec 8cmp104 lec 8
cmp104 lec 8
kapil078
 

More from kapil078 (12)

11 lec 11 storage class
11 lec 11 storage class11 lec 11 storage class
11 lec 11 storage class
 
Lec 10
Lec 10Lec 10
Lec 10
 
Btech 1st yr midterm 1st
Btech 1st yr midterm 1stBtech 1st yr midterm 1st
Btech 1st yr midterm 1st
 
Lec9
Lec9Lec9
Lec9
 
Cmp104 lec 7 algorithm and flowcharts
Cmp104 lec 7 algorithm and flowchartsCmp104 lec 7 algorithm and flowcharts
Cmp104 lec 7 algorithm and flowcharts
 
Cmp104 lec 6 computer lang
Cmp104 lec 6 computer langCmp104 lec 6 computer lang
Cmp104 lec 6 computer lang
 
Cmp104 lec 2 number system
Cmp104 lec 2 number systemCmp104 lec 2 number system
Cmp104 lec 2 number system
 
Cmp104 lec 6 computer lang
Cmp104 lec 6 computer langCmp104 lec 6 computer lang
Cmp104 lec 6 computer lang
 
Cmp104 lec 4 types of computer
Cmp104 lec 4 types of computerCmp104 lec 4 types of computer
Cmp104 lec 4 types of computer
 
Cmp104 lec 3 component of computer
Cmp104 lec 3 component of computerCmp104 lec 3 component of computer
Cmp104 lec 3 component of computer
 
Cmp104 lec 1
Cmp104 lec 1Cmp104 lec 1
Cmp104 lec 1
 
cmp104 lec 8
cmp104 lec 8cmp104 lec 8
cmp104 lec 8
 

Recently uploaded

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Recently uploaded (20)

How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 

12 lec 12 loop

  • 2. Goals By the end of this unit, you should understand … • … basic loop concepts, including pretest & posttest loops, loop initialization ,condition and increment. • … how to program a while loop. • … how to program a do-while loop. • … how to program a for loops.
  • 3. What is a loop? • A loop is a programming structure that allows an action to repeat until the program meets a given condition. • After each iteration of a loop, the loop checks against a loop control expression to see if the program met the given condition. If it did, the loop stops. If not, the loop moves on to the next iteration.
  • 4. Types of Loops • C supports two categories of loops, based on where the program tests the condition: – Pretest Loops – Post-test Loops
  • 5. Pretest Loops • With each iteration, the program tests the condition first before executing the loop’s block. • If the condition results to true, the loop continues and executes the block; if the condition results to false, the loop terminates. • With a pretest loop, there is a chance the loop may never execute once in the program.
  • 6. Post-Test Loops • With each iteration, the program executes the loop’s block first and tests against a condition. • If the condition tests to true, the loop continues and executes another iteration; if the condition tests to false, the loop terminates. • With a post-test loop, the loop will always execute at least once!
  • 7. Pretest vs. Post-Test Loops from Figure 6-2 in Forouzan & Gilberg, p. 305
  • 8. Variable Initialization • int i=5; • I have initialized the variable i with a value i=5;
  • 9. Updating a Loop • A loop update is what happens inside a loop’s block that eventually causes the loop to satisfy the condition, thus ending the loop. • Updating happens during each loop iteration. • Without a loop update, the loop would be an infinite loop.
  • 11.
  • 12. Loop Comparison from Table 6-1 in Forouzan & Gilberg, p. 308
  • 13. C Implementation of Loops • Pretest Loops – while Loop – for Loop • Post-test Loop – do … while loop • All loops in C execute so long as a condition evaluates to true and terminate when the condition evaluates to false.
  • 14. The while Loop from Figure 6-11 in Forouzan & Gilberg, p. 311
  • 15. Example of while loop #include<stdio.h> #include<conio.h> If we input value int main() of end as 10 then { output will be 1 to int start, end; 10 scanf("%d",&end); start = 0; while ( start < end) { start++; printf("%dn", start); } return 0;
  • 16. Example #include<stdio.h> The output of the postfix and prefix increment example will int main() look like this: { int i; 1 2 i = 0; 3 4 while(i++ < 5) 5 { printf("%dn", i); } 1 printf("n"); 2 3 i = 0; 4 while(++i < 5) { printf("%dn", i); } return 0; }
  • 17. The for Loop • A for loop is a pretest loop that includes three expressions in its header: – Loop initialization statement – Limit test expression(condition) – Loop update statement • The for loop is often used as a start-controlled loop since we can accurately predict the maximum number of iterations.
  • 20. Comparing while with for i = 1; sum = 0; sum =0; for (i = 1; i <= 20; i++) while (i <= 20) { { scanf(“%d”, &a); scanf(“%d”, &a); sum = sum+a; sum = sum+a; }//end for i++ }//end while The while Loop The for Loop
  • 21. Example of for loop main ( ) { int p, n, count ; float r, si ; for ( count = 1 ; count <= 3 ; count = count + 1 ) { printf ( "Enter values of p, n, and r " ) ; scanf ( "%d %d %f", &p, &n, &r ) ; si = (p * n * r) / 100 ; printf ( "Simple Interest = Rs.%fn", si ) ; } }
  • 22. Example #include <stdio.h> #include<conio.h> void main() { int i = 0, j = 8; printf("Times 8 Tablen"); for(i = 0; i <= 12; i = i + 1) { printf("%d x %d = %dn", i, j, j*i); } printf("n"); }
  • 23. Nested for Loops • We can nest any statement, even another for loop, inside the body of a parent for loop. • When we nest a child for loop, it iterates all of it’s cycles for each iteration of the parent.
  • 24. Example of nested for loop • /* Demonstration of nested loops */ When you run this main( ) program you will get the { following output: r = 1 c = 1 sum = 2 int r, c, sum ; r = 1 c = 2 sum = 3 r = 2 c = 1 sum = 3 for ( r = 1 ; r <= 3 ; r++ ) /* outer loop */ r = 2 c = 2 sum = 4 { r = 3 c = 1 sum = 4 r = 3 c = 2 sum = 5 for ( c = 1 ; c <= 2 ; c++ ) /* inner loop */ { sum = r + c ; printf ( "r = %d c = %d sum = %dn", r, c, sum ) ; } } }
  • 25. The do … while Loop • C implements a post-test loop using a structure called a do … while loop. • In the do … while, the loop begins with the keyword do, followed by the body, followed by the keyword while and the loop expression. • A semi-colon (;) follows the loop expression.
  • 26. The do … while Loop
  • 27. Example of do-while /* Execution of a loop an unknown number of time*/ main( ) { Output: char another ; Enter a number 5 int num ; square of 5 is 25 Want to enter another number y/n y do Enter a number 7 square of 7 is 49 { Want to enter another number y/n n printf ( "Enter a number " ) ; scanf ( "%d", &num ) ; printf ( "square of %d is %d", num, num * num ) ; printf ( "nWant to enter another number y/n " ) ; scanf ( " %c", &another ) ; } while ( another == 'y' ) ;}
  • 28. Same using for loop /* odd loop using a for loop */ main( ) { char another = 'y' ; int num ; for ( ; another == 'y' ; ) { printf ( "Enter a number " ) ; scanf ( "%d", &num ) ; printf ( "square of %d is %d", num, num * num ) ; printf ( "nWant to enter another number y/n " ) ; scanf ( " %c", &another ) ;
  • 29. Same using while loop /* odd loop using a while loop */ main( ) { char another = 'y' ; int num ; while ( another == 'y' ) { printf ( "Enter a number " ) ; scanf ( "%d", &num ) ; printf ( "square of %d is %d", num, num * num ) ; printf ( "nWant to enter another number y/n " ) ; scanf ( " %c", &another ) ; }}
  • 31. The break Statement in Loops • We often come across situations where we want to jump out of a loop instantly, without waiting to get back to the conditional test. • The keyword break allows us to do this. • When break is encountered inside any loop, control automatically passes to the first statement after the loop.
  • 32. Example of break • Write a program to determine whether a number is prime or not. A prime number is one, which is divisible only by 1 or itself. • All we have to do to test whether a number is prime or not, is to divide it successively by all numbers from 2 to one less than itself. • If remainder of any of these divisions is zero, the number is not a prime. If no division yields a zero then the number is a prime number.
  • 33. Example main( ) {int num, i ; printf ( "Enter a number " ) ; scanf ( "%d", &num ) ; i=2; while ( i <= num - 1 ) {if ( num % i == 0 ) { printf ( "Not a prime number" ) ; break ; } i++ ; } if ( i == num ) printf ( "Prime number" ) ; }
  • 34. Example main( ) The keyword break breaks the { control only int i = 1 , j = 1 ; from the while in while ( i++ <= 100 ) which it is placed. { while ( j++ <= 200 ) { if ( j == 150 ) break ; else printf ( "%d %dn", i, j ) ; } } }
  • 35. The continue Statement • In some programming situations we want to take the control to the beginning of the loop, bypassing the statements inside the loop, which have not yet been executed. The keyword continue allows us to do this. • When continue is encountered inside any loop, control automatically passes to the beginning of the loop.
  • 36. Example of continue statement main( ) { The output of the int i, j ; above program would for ( i = 1 ; i <= 2 ; i++ ) be... { 12 for ( j = 1 ; j <= 2 ; j++ ) 21 { if ( i == j ) continue ; printf ( "n%d %dn", i, j ) ; } }

Editor's Notes

  1. 02/21/13
  2. 02/21/13