QUESTION:- Write a program in C to display the pattern like a pyramid using an asterisk and each row contain an odd number of asterisks.

   * 

  *** 

***** 

  program


#include <stdio.h>

#include <conio.h>

int main()

{

    int ijkno;

    printf("entre a value of no: ");

    scanf("%d", &no);

    // row

    for (i = 1i <= noi++)

    {

        // space

        for (j = noj >= ij--)

        {

            printf(" ");
        }

        // display

        for (k = 1k <= (i * 2) - 1k++)

        {

            printf("*");
        }

        printf("\n");
    }

    return 0;

    getch();
}


OUTPUT

entre a value of no:  5

       *

     ***

   *****

  *******

*********


Follow our page for regular updates.

0 Comments