×

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

C and C++ Binary Files

What is a binary file? A file in which the content is written in binary format is called a binary file. A binary file is not a text file. There are...

7 minutes read.

Array to function in C

Array to function in C We can create functions that receive an array as an argument. To pass an array into a function, we need to write the name of the...

4 minutes read.

C Decision control statement

Decision Making C conditional statements are used to specify one or more conditions. The statements will be executed if the condition becomes true otherwise alternative statement will be executed if the...

3 minutes read.

Expressions in C

Expressions in C: In the C programming language, an expression defines a formula in which the operands are linked to each other by using operators to compute the value. The operand...

4 minutes read.

Sum of digits in C++

Sum of digits in C++ There are various ways to find the sum of the digits of a number in C++. We can use containers like arrays or other simple cases...

4 minutes read.

Decimal to Hexadecimal in C

Decimal to Hexadecimal in C Let us first understand the definitions of decimal and hexadecimal. In algebra, a decimal number is defined as a number whose whole number part and a...

3 minutes read.

Floor() Function in C

Floor() function is a built-in function in C which is defined in the math.h header file. This function is used to return the nearest integer value which is less than...

4 minutes read.

function pointer as argument in C

Pointers are considered difficult to understand for beginners but pointers can be made to work if you fiddle with them long enough. So, let’s understand this step by step. What are...

3 minutes read.

What is 2s Complement in C?

The complement of 2s in C is generated from the 1s in C. As we know, the 1s complement of a binary number is generated by converting bit 1 to...

4 minutes read.

Hook() function in C

Use of hook () function in C Introduction:  The hook () is a function used in the C programming language. The basic concept of the hook() function is that it can remove the function...

3 minutes read.

C Program to Find Largest Number Using Dynamic Memory Allocation

This tutorial will teach us how to locate the highest number a user has ever input into a dynamically allocated memory. C Program: #include <stdio.h> #include <stdlib.h> int main ()  {   int no;   double *data_n;   printf...

1 minute read.

Difference between Scope and Lifetime in C

In this article, we will discuss about the key differences between scope and lifetime in C, including their definitions, applications, and how they relate to one another. By the end...

8 minutes read.

What is Linked List in C

Linked list Similar to an array, a linked list is a linear data structure that stores a chain of nodes with two fields of memory in each node. Where first memory...

7 minutes read.

Escape Sequence in C

An escape sequence is a sequence of character that used inside the string literal or character.  All the escape sequence is used with the backslash (\) symbol. The list of an...

1 minute read.

Heap Sort in C

In this tutorial, we will learn about heap sorting in C language, but before going to Heap sort, we have to know the concept of Complete Binary Tree. What is Complete...

8 minutes read.

Top Array Keywords in C

Sorting array in C Types of array in C Array of structure in C How do you initialize an array in C Array declaration in C Array of strings in C Multidimensional array in C Reverse array...

1 minute read.

C program to find factorial of a number using Recursion

What does the term "Factorial of a Number" mean? In mathematics, factorial is the product of all positive integers that are less than or equal to a certain positive integer, and...

2 minutes read.

How to use sine() function in C

What is Function? The function is a set of statements. It takes input and performs some computation to produce output. The process is a set of codes only achieved when it is...

3 minutes read.

What are linker and loader in C

Linker and loader are utility programs that have a significant role in executing a program. Linker: A linker is a program that joins the object files produced by the assembler/ compiler...

3 minutes read.

How to use Typedef Struct in C

The “typedef” is a predefined keyword in C programming language which is used to declare the new name to an existing type of variable. For better understanding, if you declare a...

3 minutes read.