×

Nested Loops in C Programming Examples

A nested loop is generally used when we want to run a loop statement inside another loop statement. This kind of loop is also known as a “loop inside the loop”.

In the nested loop, first we provide an initialization statement. Then, the control evaluates the value of the first condition and checks whether the termination condition is true or false.

If the value is false, it will terminate the entire process and only perform the basic command. But if the value is true, it will continue to check the second condition. If it finds the second condition false, it will terminate the processing of the program of the second condition and move to the primary/first loop and perform it.

And, if the second condition results to true, control will execute the loop and termination condition repeatedly until the value of condition becomes false. Along with this, some increment or decrement statements are implemented after every loop execution.

As the second condition terminates, it goes back to the first condition, checks again, and repeats the entire execution process. The execution of termination condition can take place multiple times. According to the loop, C control performs the condition given at the end and produces the outcome. At last, it will display the output on the screen.

Now we are going to define the syntax of nested loop using for, while, and do-while loop.

Syntax of Nested For Loop:

for (initialization; termination condition; increment/decrement statement) {
      // program line of the first loop
   }
   // program line of the second loop
}

Syntax of Initiating Nested While Loop:

while(condition) 
{
// condition must be provided 
   while(condition) 
   { 
      // program line of the first loop
   }
   // program line of the second loop
}

Syntax of Initiating Nested Do-While Loop:

do
{
   do
   {     
      // program line of the first loop
   }
while(condition); //condition is given here
   // program line of the second loop
}
while(condition);

Syntax of Initiating Nested Mixed (Do-While, While, For) Loop:

do
{ while(condition) // condition should be provided
{   
 for (initialization; termination condition; increment/decrement condition) 
{
// program line of the first loop
 }
  // program line of the first while loop
 }
 // program line of second do-while loop
}
while(condition);

Example 01: Program of nested for loop:

#include <stdio.h>
#include <stdlib.h> /* it involves memory 
  allocation, process control, conversions */
#define ROW 3 // rows declaration
#define COL 3 // columns declaration
// Driver program code
int main ()
{
    int a, b;
    // Declaration of the matrix
    int matrix [ROW][COL] = 
{
{11, 12, 13},
{14, 15, 16},
{17, 18, 19} 
};
        printf("the provided matrix is \n");
        // loops implementation
        for (a = 0; a < ROW; b++) // (initialization statement; termination condition; increment/decrement statement)  
   {
        for (b = 0; b < COL; b++) // (initialization statement; termination condition; increment/decrement statement)  
            printf("%d ", matrix[a][b]); // printing matrix as an input
            printf("\n"); // next line initialization program code
   }
    return 0;
}

Output:

the provided matrix is 
11 12 13 
14 15 16 
17 18 19 

Example 02: Program of nested for loop:

#include<stdio.h>
#include<math.h>
int main ()
{
    int a, b, c; // declaring various variables without assigning values
    printf("Input a natural number up to which you want to print composite numbers :"); // taking input from the user
    scanf("%d", &c); // assigning value entered by the user to c
    for (a=2; a<=c; a++) // (initialization statement; termination condition; increment/decrement statement)  
    {
        for (b=2; b<=(int) pow(a,0.5); b++) // (initialization statement; termination condition; increment/decrement statement)  
        {
            if(a%b==0) // initializing if statement
            {
                printf("%d can be considered as a composite number \n", a); // printing the output
                break; // break statement to terminate “for” loop
            }    
        }
    }
    return 0;
}

Output:

Input a natural number up to which you want to print composite numbers :20
4 can be considered as a composite number
6 can be considered as a composite number
8 can be considered as a composite number
9 can be considered as a composite number
10 can be considered as a composite number
12 can be considered as a composite number
14 can be considered as a composite number
15 can be considered as a composite number
16 can be considered as a composite number
18 can be considered as a composite number
20 can be considered as a composite number

Example 03: Program of nested for loop:

#include <stdio.h>
int main () 
{
   int a, b; // declaring various variables without initiating variables
   for (a = 2; a<100; a++) 
{
      for (b = 2; b <= (a/b); b++) // (initialization statement; termination condition; increment/decrement statement)   
      if (! (a % b)) // if statement initialization 
      break; // break statement initialization for terminating the loop 
      if (b > (a/b)) // if statement initialization
      printf ("%d can be considered as prime numbers\n", a);
   }
   return 0;
}

Output:

2 can be considered as prime numbers
3 can be considered as prime numbers
5 can be considered as prime numbers
7 can be considered as prime numbers
11 can be considered as prime numbers
13 can be considered as prime numbers
17 can be considered as prime numbers
19 can be considered as prime numbers
23 can be considered as prime numbers
29 can be considered as prime numbers
31 can be considered as prime numbers
37 can be considered as prime numbers
41 can be considered as prime numbers
43 can be considered as prime numbers
47 can be considered as prime numbers
53 can be considered as prime numbers
59 can be considered as prime numbers
61 can be considered as prime numbers
67 can be considered as prime numbers
71 can be considered as prime numbers
73 can be considered as prime numbers
79 can be considered as prime numbers
83 can be considered as prime numbers
89 can be considered as prime numbers
97 can be considered as prime numbers

Example 04: Program of nested while loop:

#include <stdio.h>
int main ()
{
    int a=1, b; // declaring various variables as well as initiating value of ‘a’ as 1
    while (a <= 5) // while (termination condition)
    {
        b=1; // initialization of the value of ‘b’ as 1
        while (b <= a) // while (termination condition)
        {
            printf ("%d ", b); // printing the value of ‘b’ as an output
            b++; // increment statement to modify the value of ‘b’ for further evaluation
        }
        printf ("\n"); // printing the next line command as an output to change the new print line
        a++; // increment statement to modify the value of ‘b’ for further evaluation
    }
    return 0;
}

Output:

1
1 2
1 2 3
1 2 3 4
1 2 3 4 5

Example 05: Program of nested do while loop:

#include <stdio.h>
int main ()
{
    int a=1, b; // declaring various variables as well as initiating value of ‘a’ as 1
    do // ‘do while’ loop initialization
    {
        b=1; // initialization of the value of ‘b’ as 1
        do // ‘do while’ loop initialization
        {
            printf("*"); // printing ‘*’as an output 
            b++; // increment statement to modify the value of ‘b’ for further evaluation
        }
         while (b <= a); // while (termination condition)
        a++; // increment statement to modify the value of ‘b’ for further evaluation
        printf("\n"); // printing the next line command as an output to change the new print line
    }
         while (a <= 5); // while (termination condition)
    return 0;
}

Output:

*
**
***
****
*****

Example 06: Program of nested while and for loop:

/* program in c to find out every prime factor
of a specific number with the help of nested loop */
#include <math.h> // library to include mathematical operations 
#include <stdio.h> 
// program line to display every possible prime factor of a provided number n
void primeFactors (int n)
{
   // divisibility check 
   while (n % 2 == 0) 
   {
      printf("%d ", 2);
      n = n / 2;	
   }
   /* n must be odd So that one element can be we can be skipped
    (Note: a = a+2) */
   for (int a = 3; a <= sqrt(n); a = a + 2) 
   {
      // when n is divisible by a then display a and divide n
      while (n % a == 0) {
         printf("%d ", a);
         n = n / a;
      }
   }
   /* This test expression is defined to deal with the cases like 
    n is a prime number greater than 2 */
   if (n > 2)
      printf("%d are the prime factors of the entered number \n ", n );
}
int main ()
{
   int n = 237765;
   primeFactors(n);
   return 0;
}

Output:

3 5 11 11 131 are the prime factors of the entered number

Related Topics

Recursion in C

Recursion is a programming technique that allows the programmer to call the function within the same function. The function which calls the same function is known as recursive function but a...

1 minute read.

Difference between Pre-increment and Post-increment in C

Increment operators are the kind of operators that are used to increment the cost of the operand by way of 1. In different words, the increment operator is an operator...

4 minutes read.

Unformatted input() and output() function in C

Unformatted Input and Output functions take the character, character array, and strings as input. We can read-only character data types with these functions. These functions are already defined in the...

5 minutes read.

Do WHILE LOOP in C Programming Examples

Before understanding the programming examples of the Do-While loop, we have to know what is Do-While loop in C. So, let's start with the definition of the Do-While loop. What is...

5 minutes read.

Fibonacci series in C

We have learned about the Fibonacci series in mathematics. For a quick recap, A Fibonacci series is the sequence of numbers following a certain pattern i.e., the next number should...

3 minutes read.

Fee Management System in C

The concept is to split every operation into its very own characteristic. Software is made from all of the capabilities mixed with transfer cases. An example of the capabilities may...

5 minutes read.

C/C++ Program to Find the Size of int, float, double and char

In this tutorial, we will learn how to use the sizeof operator to determine the size of each variable. Program to Determine Variable Size Write a C or C++ program to determine the...

2 minutes read.

Multilevel Feedback Queue Scheduling (MLFQ) CPU Scheduling

In this article, you will learn how to initialise an array to 0 in C In C, an array is declared as: char ZEROARRAY[2022]; The global scope changes at runtime to all zeros....

3 minutes read.

Command line arguments in C

Command line arguments in C The arguments that are generally passed from the line of command are referred to as command line arguments. These command line arguments are always handled by...

3 minutes read.

Sum of N numbers in C using For loop

Before we move on the program of sum of N numbers, first we have to know about the For Loop statement. The syntax of ‘for’ loop in C programming language is...

3 minutes read.

Long int in C

We use data type to avoid the type of data to be stored for a variable at the time of declaration.So, we can say that the variable type is known...

3 minutes read.

Function in C

Function is a group of statements that are used to perform any task. In other words, we can say that a function is a self- contained a block of programs...

3 minutes read.

C vs Java Strings

String in C In C, we can define a string as a bunch of characters. A character array is distinguished from a string by the presence of the special character '\0'...

5 minutes read.

Fibonacci series program in C using Recursion

In this tutorial, we’ll explore how to utilise recursion to build the Fibonacci sequence in C language. What does the term "Fibonacci Series" mean? The following number in a Fibonacci number series is...

2 minutes read.

Storage Class in C

C storage class is used to define the scope variables and function. There are four various types of storage classes that are given below. auto: The auto keyword is the default...

1 minute read.

Use of free() function in C

Introduction The free() function uses in C programming language. The free() function in the C programming language uses to release or deallocate the memory blocks; these blocks are previously allocated by calloc(), malloc() or realloc()...

3 minutes read.

strcat() Function in C

Strings in c: A string is defined as the set of characters that are enclosed within the double quotations (" "). The String always ends with the null character ("\0"). The...

3 minutes read.

C pre-processor

The C processor is a macro processor which is used to compile the source code of the program (step by step) . It is not a part of the compiler....

4 minutes read.

Pointer in C

Pointer is a variable that is used to contain the address of another variable. We can easily create a pointer in C language. Example: int *ptr Symbol Description & (ampersand sign) Address of an operator...

1 minute read.

C Pointers

Pointers in C A pointer is a variable, which contains the address of another variable, i.e., it’s a variable which has the address of another variable as its value. The utilization...

4 minutes read.