Logo

Navigation
  • Home
  • Services
    • ERP Solutions
    • Implementation Solutions
    • Support and Maintenance Solutions
    • Custom Solutions
    • Upgrade Solutions
    • Training and Mentoring
    • Web Solutions
    • Production Support
    • Architecture Designing
    • Independent Validation and Testing Services
    • Infrastructure Management
  • Expertise
    • Microsoft Development Expertise
    • Mobile Development
    • SQL Server Database and BI
    • SAP BI, SAP Hana, SAP BO
    • Oracle and BI
    • Oracle RAC
  • Technical Training
    • Learn Data Management
      • Business Intelligence
      • Data Mining
      • Data Modeling
      • Data Warehousing
      • Disaster Recovery
    • Learn Concepts
      • Application Development
      • Client Server
      • Cloud Computing Tutorials
      • Cluster Computing
      • CRM Tutorial
      • EDI Tutorials
      • ERP Tutorials
      • NLP
      • OOPS
      • Concepts
      • SOA Tutorial
      • Supply Chain
      • Technology Trends
      • UML
      • Virtualization
      • Web 2.0
    • Learn Java
      • JavaScript Tutorial
      • JSP Tutorials
      • J2EE
    • Learn Microsoft
      • MSAS
      • ASP.NET
      • ASP.NET 2.0
      • C Sharp
      • MS Project Training
      • Silverlight
      • SQL Server 2005
      • VB.NET 2005
    • Learn Networking
      • Networking
      • Wireless
    • Learn Oracle
      • Oracle 10g
      • PL/SQL
      • Oracle 11g Tutorials
      • Oracle 9i
      • Oracle Apps
    • Learn Programming
      • Ajax Tutorial
      • C Language
      • C++ Tutorials
      • CSS Tutorial
      • CSS3 Tutorial
      • JavaScript Tutorial
      • jQuery Tutorial
      • MainFrame
      • PHP Tutorial
      • VBScript Tutorial
      • XML Tutorial
    • Learn Software Testing
      • Software Testing Types
      • SQA
      • Testing
  • Career Training
    • Career Improvement
      • Career Articles
      • Certification Articles
      • Conflict Management
      • Core Skills
      • Decision Making
      • Entrepreneurship
      • Goal Setting
      • Life Skills
      • Performance Development
      • Personal Excellence
      • Personality Development
      • Problem Solving
      • Relationship Management
      • Self Confidence
      • Self Supervision
      • Social Networking
      • Strategic Planning
      • Time Management
    • Education Help
      • Career Tracks
      • Essay Writing
      • Internship Tips
      • Online Education
      • Scholarships
      • Student Loans
    • Managerial Skills
      • Business Communication
      • Business Networking
      • Facilitator Skills
      • Managing Change
      • Marketing Management
      • Meeting Management
      • Process Management
      • Project Management
      • Project Management Life Cycle
      • Project Management Process
      • Project Risk Management
      • Relationship Management
      • Task Management
      • Team Building
      • Virtual Team Management
    • Essential Life Skills
      • Anger Management
      • Anxiety Management
      • Attitude Development
      • Coaching and Mentoring
      • Emotional Intelligence
      • Stress Management
      • Positive Thinking
    • Communication Skills
      • Conversation Skills
      • Cross Culture Competence
      • English Vocabulary
      • Listening Skills
      • Public Speaking Skills
      • Questioning Skills
    • Soft Skills
      • Assertive Skills
      • Influence Skills
      • Leadership Skills
      • Memory Skills
      • People Skills
      • Presentation Skills
    • Finding a Job
      • Etiquette Tips
      • Group Discussions
      • HR Interviews
      • Interview Notes
      • Job Search Tips
      • Resume Tips
      • Sample Resumes
 

C Programming – Decision Making – Looping

By Exforsys | on April 4, 2006 |
C Language

Loops are group of instructions executed repeatedly while certain condition remains true. There are two types of loops, counter controlled and sentinel controlled loops (repetition).

Counter controlled repetitions are the loops which the number of repetitions needed for the loop is known before the loop begins; these loops have control variables to count repetitions. Counter controlled repetitions need initialized control variable (loop counter), an increment (or decrement) statement and a condition used to terminate the loop (continuation condition).

Sentinel controlled repetitions are the loops with an indefinite repetitions; this type of loops use “sentinel value” to indicate “end of iteration”.

Loops are mostly used to output the data stored in arrays, however they are also used for sorting and searching of data.

‘For’ Loop

“For” loops is a counter controlled repetition; therefore the number iterations must be known before the loop starts.

  1. for(control-variable; continuation-condition;increment/decrement-control) {
  2. code to iterate
  3. }

Hint: if the code to iterate is only a single line then the braces ({ }) can be ignored.

Diagram 1 illustrates ‘for statement’ operation.

Diagram  SEQ Diagram * ARABIC 1 for statement

Example: consider the case of repeating the same line of code for 10 times. We write the code below.

  1. int counter;
  2.     for(counter=1; counter<=10; counter++)
  3.     printf("n Number: %d",counter);

Figure 1 simple program counting from 1 to 10

Description: “statement 1” declares the control variable of this ‘for’ loop. “Statement 2” is the most important part of this code. It initializes the control variable; it sets the continuation condition and it increments the control variable after every successful iteration. Diagram 2 clearly shows how this code works.

Diagram  2 code 1’s operation

The While Statement

“while” statement is a sentinel controlled repetition which can be iterated indefinite number of times. Number of iterations is controlled using a sentinel variable (test expression).

  1. while(test-expression)
  2. {
  3. code to execute 
  4. }

Hint: test-expression must be initialized otherwise errors will be generated when trying to compile the code.
 
Diagram 3 illustrates how “while” statement operates

Diagram  3 while statement

Hint: sentinel variable (test expression) must be controlled within the “while” statement, otherwise the loop will run forever.

Example: here we will consider the same example as we did for “for” loop; this is to see how two loops differ from each other.

  1. int counter=1;
  2. while(counter <=10)
  3. { 
  4. printf("n Number: %d",counter);
  5. counter++;
  6. }

Figure  2 counting from 1 to 10 using while loop

Description: this code does the same job as the code 1 but using “while” statement instead of “for” statement.

The ‘do..while’ statement

“do..while” statement is a sentinel controlled repetition which is quite different from the other two statements we covered earlier. This statement runs the code first and then checks the test-expression, so there is always a guarantee that the code runs at least once. This type of loop is generally used for password checks and menus.

  1. do{
  2. code to iterate
  3. }while(test-expression)

Hint: you must initialize the test-expression to avoid possible errors.

Diagram 4 illustrates the operation of “do..while” statement.

Diagram  4 do..while statement

Example #4: here we will consider a simple menu using “do..while” this code will repeat the menu until “0” is inputted.

  1. int input;
  2. do
  3. { 
  4. printf("n press 1 to print "hello" or 0 to exit : ");
  5. scanf("%d",&input);
  6. switch(input)
  7. {
  8. case 1: printf("hello"); break;
  9. case 0: printf("exitting");break;
  10. }
  11. }
  12. while(input !=0);

Figure  3 simple menu
 
Description: “switch statement” is used to create a simple menu which allows actions for two different cases. If and input is 0 then the “while” loop will be terminated once the test-expression is reached causing the program to exit.

The Break Statement

“break” statement is used to exit the iteration. This statement is usually used when early escape from the loop is acceptable by the programmer. For example if we are searching for a data, we can use “break” as soon as we find the data to exit the loop. You can simply use “break” by writing “break;” at the point where you want to escape the loop. “break” can be used with all the statements we have covered in this tutorial.
 
Diagram 5 shows how the program flow changes by “break” statement.

Diagram  5 use of "break"

Example: in this example, we will write a program which will escape the loop using “break” as soon as the number is equal to “2”.

  1. int counter;
  2. for(counter=1;counter<=10;counter++)
  3. {
  4. printf("nnumber: %d before break",counter);
  5. if(counter==2)
  6.  break;
  7.  printf("nnumber: %d after break",counter);
  8. }
  9. printf("nloop was escaped at %d",counter);

Figure 4 use of "break"
 
Description: counter value is initialized to ‘1’. Therefore “statements 1 and 2“ will all be executed in the first iteration, but when the counter is incremented; “statement 1,2 and 4 “ will be executed because “statement 2” will escape out of the loop and go to the first line after the loop.

The Continue Statement

“continue” statement is used to skip the remaining code of the loop and start the new one. This statement can be implemented by “continue;”.

Diagram 6 shows the flow of the loop.

Diagram  6 "continue" statement

Example: we will consider the case in which the loop will skip all the even numbers between 1 and 10.

  1. int counter;
  2. for(counter=1;counter<=10;counter++)
  3. {
  4. if(counter%2==0)
  5. continue;
  6. printf("nnumber: %d was not skipped",counter);
  7.  
  8. }

Figure 5 odd numbers between 1 and 10

Description: “for” statement will iterate 10 times counting from 1 to 10. Every time the counter reaches a number which is a multiple of 2 (counter%2==0), “continue” statement will be used to skip to the next number.

« « C Programming – Decision Making – Branching
Tips To Improve Your Current Resume » »

Author Description

Avatar

Editorial Team at Exforsys is a team of IT Consulting and Training team led by Chandra Vennapoosa.

Free Training

RSSSubscribe 391 Followers
  • Popular
  • Recent
  • C Programming – Managing Input and Output Operations

    March 30, 2006 - 0 Comment
  • C Language – The Preprocessor

    May 31, 2006 - 0 Comment
  • C Programming – Decision Making – Branching

    April 4, 2006 - 0 Comment
  • Call by Value and Call by Reference

    July 6, 2006 - 0 Comment
  • C Programming – Arrays

    April 13, 2006 - 0 Comment
  • Concept of Pixel in C Graphics

    July 11, 2006 - 0 Comment
  • C Programming – Handling of Character String

    April 17, 2006 - 0 Comment
  • TSR in C – An Introduction

    July 11, 2006 - 0 Comment
  • C Programming – Functions (Part-II)

    May 22, 2006 - 0 Comment
  • C Programming – Data Types : Part 2

    August 21, 2011 - 0 Comment
  • C Programming – Data Types : Part 2

    August 21, 2011 - 0 Comment
  • C Circular Linked Lists

    June 26, 2011 - 0 Comment
  • C Doubly Linked Lists

    June 26, 2011 - 0 Comment
  • TSR in C – An Introduction

    July 11, 2006 - 0 Comment
  • Concept of Pixel in C Graphics

    July 11, 2006 - 0 Comment
  • Call by Value and Call by Reference

    July 6, 2006 - 0 Comment
  • C Language – The Preprocessor

    May 31, 2006 - 0 Comment
  • C Programming – File management in C

    May 31, 2006 - 0 Comment
  • C Programming – Linked Lists

    May 29, 2006 - 0 Comment
  • C Programming – Dynamic Memory allocation

    May 29, 2006 - 0 Comment

Exforsys e-Newsletter

ebook
 

Related Articles

  • C Programming – Data Types : Part 2
  • C Circular Linked Lists
  • C Doubly Linked Lists
  • TSR in C – An Introduction
  • Concept of Pixel in C Graphics

Latest Articles

  • Project Management Techniques
  • Product Development Best Practices
  • Importance of Quality Data Management
  • How to Maximize Quality Assurance
  • Utilizing Effective Quality Assurance Strategies
  • Sitemap
  • Privacy Policy
  • DMCA
  • Trademark Information
  • Contact Us
© 2023. All Rights Reserved.IT Training and Consulting
This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish.AcceptReject Read More
Privacy & Cookies Policy

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Non-necessary
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.
SAVE & ACCEPT