Write a Program to  print patten
   1 2 3 4 5
   1 2 3 4 5
   1 2 3 4 5
   1 2 3 4 5
   1 2 3 4 5  

using for loop , while loop and do while loop in C Program  

1.
Write a Program to Print Patten using for loop in c program - Program Code

/* Write a Program to  print patten
   1 2 3 4 5
   1 2 3 4 5
   1 2 3 4 5
   1 2 3 4 5
   1 2 3 4 5  using for loop  */
   #include<stdio.h>
   #include<conio.h>
   void main()
   {
     int i,j;
     clrscr();
     for(i=1;i<=5;i++)
     {
       for(j=1;j<=5;j++)
       {
printf("%d ",j);
       }
       printf("\n");
     }
     getch();
   }       
 

Program to Print Patten using for loop in c program - Program Code

Program to Print Patten using for loop in c program output - Program Code

Download Program source code
Download To click here...

2.
Write a Program to Print Patten using while loop in c program - Program Code

/* Write a Program to  print patten
   1 2 3 4 5
   1 2 3 4 5
   1 2 3 4 5
   1 2 3 4 5
   1 2 3 4 5 using while loop  */
   #include<stdio.h>
   #include<conio.h>
   void main()
   {
     int i=1,j;
     clrscr();
     while(i<=5)
     {
       j=1;
       while(j<=5)
       {
printf("%d ",j);
j++;
       }
       printf("\n");
       i++;
     }
     getch();
   }   
           

Program to Print Patten using while loop in c program - Program Code

Program to Print Patten using while loop in c program - Program Code

Program to Print Patten using while loop in c program output - Program Code

Download Program source code
Download To click here...

3.
Write a Program to Print Patten using do while loop in c program - Program Code

 /* Write a Program to  print patten
   1 2 3 4 5
   1 2 3 4 5
   1 2 3 4 5
   1 2 3 4 5
   1 2 3 4 5  using do while loop  */
   #include<stdio.h>
   #include<conio.h>
   void main()
   {
     int i=1,j;
     clrscr();
     do
     {
       j=1;
       do
       {
printf("%d ",j);
j++;
       }while(j<=5);
       printf("\n");
       i++;
     } while(i<=5);
     getch();
   }

Program to Print Patten using do while loop in c program - Program Code

Program to Print Patten using do while loop in c program - Program Code

Program to Print Patten using do while loop in c program output - Program Code

Download Program source code
Download To click here...