Open In App

Difference between Sentinel and Counter Controlled Loop in C

Improve
Improve
Like Article
Like
Save
Share
Report

Sentinel Controlled Loop

A sentinel controlled loop is also called an indefinite repetition loop because the number of iterations is not known before the loop starts executing. In a sentinel controlled loop, a special value called sentinel value is used to change the loop control expression from true to false in order to determine whether to execute the loop body. Sentinel controlled loop is useful when we don’t know in advance how many times the loop will be executed. An example of a sentinel controlled loop is the processing of data from a text file of unknown size. Below is the program to illustrate sentinel controlled loop in C

C




// The following program does the work
// of finding a length of a string using
// sentinel controlled loop
#include <stdio.h>
 
// Function to find the
// length of the string
void lengthOfString(char* string)
{
    int count = 0, i = 0;
    char temp;
 
    // Pointer to string
    temp = string[0];
 
    // Iterate till temp points to NULL
    while (temp != '\0') {
        count++;
        i++;
        temp = string[i];
    }
 
    // Print the length of the string
    printf("The length of string is %d",
           count);
}
 
// Driver Code
int main()
{
    // Given String
    char string[] = "GeeksForGeeks";
 
    // Function Call
    lengthOfString(string);
    return 0;
}


Output:

The length of string is 13

Counter Controlled Loop

A counter controlled loop is also known as definite repetition loop, since the number of iterations is known before the loop begins to execute. The counter-controlled loop has the following components:

  1. a control variable.
  2. the increment (or decrement)value by which the control variable is modified at each iteration of the loop.
  3. the loop terminating condition that checks if looping should continue.

Since the counter controlled loop is controlled by a counter value, at each iteration counter value will increase or decrease with a definite value and condition will be checked, so the number of loop execution becomes definite. Any task involving definite iteration can be solved using a counter controlled loop for example printing the first 10 natural numbers. 

C




// Program to print first K
// natural numbers
#include <stdio.h>
 
// Function to print the Natural Number
void printNaturalNumbers(int K)
{
    int i = 1;
    while (i <= K) {
 
        // Print the number i
        printf("%d ", i);
        i++;
    }
    return;
}
 
// Driver Code
int main()
{
    // Given Number N
    int N = 5;
 
    // Function Call
    printNaturalNumbers(N);
    return 0;
}


Output:

1 2 3 4 5

The main difference between Sentinel and Counter Controlled Loop in C is that in a Sentinel Controlled Loop, exactly how many times loop body will be executed is not known and in a Counter Controlled Loop, how many times loop body will be executed is known.

Difference between Sentinel and Counter Controlled Loop in C is given below:

S.NO. BASIS OF COMPARISON SENTINEL CONTROLLED LOOP COUNTER CONTROLLED LOOP
1. Definition A sentinel controlled loop is the indefinite repetition loop as the number of repetitions is not known before the loop begins executing A counter controlled loop is the definite repetition loop as the number of repetitions is known before the loop begins executing
2. Controlling variable Controlled variable  used is known as sentinel variable. Controlled variable used is known as counter.
3. Number of iteration Unknown number of iteration Known number of iteration.
4. Value of variable The value of the variable is not strict and it varies. The value of the variable is strict.
5. Limitation of variable The Limitation of the variable is strict. The Limitation of the variable is strict also.
6. Example A do….while loop is an example of sentinel controlled loop. A while loop is an example of counter controlled loop.


Last Updated : 25 Jan, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads