1. How To Create Star Pattern program in C.

  • We will learn how to Print a Half Pyramid Structure using Characters and Star, in the C programming language.
  • All such patterns using or alphabets or numbers are achieved by making use of the for loop .





   /* This is Pattern program using # in C */
   #include <stdio.h>
   /* Main function starts from here*/
   int main()
   {
       int i, j, rows;

   /* This statement will numer of rows message */
       printf("Enter number of rows: ");
       scanf("%d",&rows);

   /* using for loop*/
       for(i=1; i<=rows; ++i)
       {
           for(j=1; j<=i; ++j)
           {
               printf("* ");
           }
           printf("\n");
       }
       return 0;
   }

OUTPUT

	Enter number of rows: 5
	* 
	* * 
	* * * 
	* * * * 
	* * * * *



2. How To Create Number Pattern program in C.

  • We will learn how to Print a Half Pyramid Structure using Characters and Star, in the C programming language.
  • All such patterns using or alphabets or numbers are achieved by making use of the for loop .



   #include <stdio.h>
   int main()
   {
       int i, j, rows;

       printf("Enter Number of rows: ");
       scanf("%d",&rows);

       for(i=1; i<=rows; ++i)
       {
           for(j=1; j<=i; ++j)
           {
               printf("%d ",j);
           }
           printf("\n");
       }
       return 0;
   }

OUTPUT

	Enter number of rows: 5
	1 
	1 2 
	1 2 3 
	1 2 3 4 
	1 2 3 4 5