amp-web-push-widget button.amp-subscribe { display: inline-flex; align-items: center; border-radius: 5px; border: 0; box-sizing: border-box; margin: 0; padding: 10px 15px; cursor: pointer; outline: none; font-size: 15px; font-weight: 500; background: #4A90E2; margin-top: 7px; color: white; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.5); -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } .amp-logo amp-img{width:190px} .amp-menu input{display:none;}.amp-menu li.menu-item-has-children ul{display:none;}.amp-menu li{position:relative;display:block;}.amp-menu > li a{display:block;} /* Inline styles */ figure.acss855b8{max-width:2480px;}figure.acss86e63{max-width:484px;}span.acssce51c{color:#808000;}span.acssb4d53{color:#993300;}figure.acss3a9b5{max-width:674px;}div.acss138d7{clear:both;}div.acssf5b84{--relposth-columns:3;--relposth-columns_m:2;--relposth-columns_t:2;}div.acssb0b92{aspect-ratio:1/1;background:transparent url(https://code4coding.com/wp-content/uploads/2018/07/nestedwhile-300x106.jpg) no-repeat scroll 0% 0%;height:150px;max-width:150px;}div.acss6bdea{color:#333333;font-family:Arial;font-size:12px;height:75px;}div.acss8d0ac{aspect-ratio:1/1;background:transparent url(https://code4coding.com/wp-content/uploads/2018/12/whileloop1.jpg) no-repeat scroll 0% 0%;height:150px;max-width:150px;}a.acss9bfd5{font-size:14.52427184466pt;}a.acssc37f8{font-size:16.427184466019pt;}a.acss29e97{font-size:16.631067961165pt;}a.acss361c8{font-size:17.174757281553pt;}a.acss51c7b{font-size:20.029126213592pt;}a.acssa2e10{font-size:20.097087378641pt;}a.acss5dd67{font-size:21.728155339806pt;}a.acssf0e8e{font-size:12.077669902913pt;}a.acss759e3{font-size:17.922330097087pt;}a.acss0abf8{font-size:21.252427184466pt;}a.acss6bf84{font-size:13.504854368932pt;}a.acss349b0{font-size:10.038834951456pt;}a.acssf23c5{font-size:8pt;}a.acss7e0a8{font-size:9.2233009708738pt;}a.acsse6f77{font-size:16.970873786408pt;}a.acssc51bb{font-size:14.116504854369pt;}a.acss38f57{font-size:11.26213592233pt;}a.acss066f0{font-size:22pt;}a.acss4e811{font-size:17.31067961165pt;}a.acss9cc90{font-size:12.417475728155pt;}a.acss01721{font-size:15.339805825243pt;}a.acsse9f66{font-size:15.543689320388pt;}a.acss72254{font-size:20.708737864078pt;}a.acsseedeb{font-size:20.776699029126pt;}a.acss25b87{font-size:14.320388349515pt;}a.acss7c517{font-size:12.757281553398pt;}a.acss7a3ee{font-size:18.941747572816pt;}a.acssf92d5{font-size:18.26213592233pt;}a.acss551d3{font-size:16.291262135922pt;} .icon-widgets:before {content: "\e1bd";}.icon-search:before {content: "\e8b6";}.icon-shopping-cart:after {content: "\e8cc";}
In this tutorial, we will learn about Nested do while loop in C programming language
In C programming language, one do-while inside another do-while is known as nested do -while loop
Syntax
statements do{ statements do{ statements }while(condition); statements }while(condition);
initially, the initialization statement is executed only once and statements(do part) execute only one. Then, the flow of control evaluates the test expression.
When the test expression is true, the flow of control enter the inner loop and codes inside the body of the inner loop is executed and updating statements are updated. This process repeats until the test expression is false(inner while loop)
Then, when the test expression is false, loop exit from the inner loop and flow of control comes to the outer loop. Again, the flow of control evaluates test condition.
If test condition for outer loop returns as true, the flow of control executes the body of while loop statements and return as false. The flow of control stops execution and goes to rest.
program 1
This program displays a square number pattern in C language
#include <stdio.h> #include <stdlib.h> int main() { int i,j; i=1; printf("Square number pattern\n\n"); printf("Here your pattern\n\n"); do{ j=1; do{ printf("%d",j); j++; }while(j<=10); printf("\n"); i++; }while(i<=10); getch(); return 0; }
When the above code is executed, it produces the following results:
Square number pattern Here your pattern 12345678910 12345678910 12345678910 12345678910 12345678910 12345678910 12345678910 12345678910 12345678910 12345678910
Program 2
This program displays a square star pattern in C language
#include <stdio.h> #include <stdlib.h> int main() { int i,j; i=1; printf("Asterisk number pattern\n\n"); printf("Here your pattern\n\n"); do{ j=1; do{ printf("*"); j++; }while(j<=9); printf("\n"); i++; }while(i<=9); getch(); return 0; }
When the above code is executed, it produces the following results:
Asterisk number pattern Here your pattern ********* ********* ********* ********* ********* ********* ********* ********* *********
The above program displays a square star pattern in C language using nested do-while loop
Program 3
This program displays a floyd’s triangle number pattern in C language using do-while loop
#include <stdio.h> #include <stdlib.h> int main() { int i,j; i=1; printf("Triangle number pattern\n\n"); printf("Here your pattern\n\n"); do{ j=1; do{ printf("%d",j); j++; }while(j<=i); printf("\n"); i++; }while(i<=9); getch(); return 0; }
When the above code is executed, it produces the following results:
Triangle number pattern Here your pattern 1 12 123 1234 12345 123456 1234567 12345678 123456789
This program displays a Floyd triangle number pattern using do-while in C language
Program 4
Print multiplication table using nested do-while loop in C
#include <stdio.h> #include <stdlib.h> int main() { int i,j; i=1; printf("Multiplication table\n\n"); printf("Here multiplication table\n\n"); do{ j=1; do{ printf("%d\t",i*j); j++; }while(j<=10); printf("\n"); i++; }while(i<=10); getch(); return 0; }
Suggested for you
Floyd’s triangle number pattern using for loop in C
Floyd’s triangle pattern using for loop in Java
Floyd’s triangle pattern using while loop in Java
Hollow pyramid triangle pattern in C++ language
Similar post
Nesting for in Python language
10 best Ways to Subtract Two Numbers in Java (With Examples) In this article, we…
Array Data Structure: Definition, Types, Operations & Advantages Array Data Structure Introduction In this post,…
20 ways to subtract two numbers in Java In this article, we will discuss the…
10 simple ways to add two numbers in Java In this article, we will discuss…
Write a Python program to find the first n prime numbers In this article we…
Python: Calculate Average of odd and even in a list using loops In this post,…