Answers for "pyramid using c"

C
2

c programming print pattern pyramid

#include<stdio.h> 
int main() 
{
int i,j,n; 
printf("ENTER THE NUMBER OF ROWS YOU WANT TO PRINT * PYRAMID PATTERN\n"); 
scanf("%d", &n); 
for(i = 1 ; i <= n ; i++) 
{
    for (j = 1 ; j <= 2*n-1 ; j++) 
{
      if (j >= n-(i-1) && j <= n+(i-1)) 
      { printf("*"); }
      else 
      {printf(" "); } 
} 
printf("\n");
}
Posted by: Guest on January-21-2021
0

pyramid using c

#include <stdio.h>

int main(){
    int i,j,n,;//declaring variables

    /*
    At first half pyramid
    *
    **
    ***
    ****
    *****
    ******
    *******
    ********
    */
    printf("Enter rows: \n");
    scanf("%d",&n);

    printf("half pyramid\n\n");
    for(i=0;i<n;i++){ //loop for making rows
        for(j=0;j<i;j++){ //loop for making stars. Here "i" is row number and n is total row number. so for making 1 star after 1 star you've to put variable "i"
            printf("* ");
        }
        //printing new line
        printf("\n");
    }

    printf("\n\n");





    /*
    making full pyramids

        *
       ***
      *****
     *******
    *********
   ***********

    */
    printf("full pyramid\n\n");
    //the first loop is for printing rows
    for(i=1;i<=n;i++){
        //loop for calculating spaces
        for(j=1;j<=(n-i);j++){ //to calculate spaces I use totalRows-rowNo formula
            printf(" ");
        }

        //loop for calculating stars
        for(j=1;j<=((2*i)-1);j++){ //using the formula "2n-1"
            printf("*");
        }
        //printing a new line
        printf("\n");
    }





    return 0;


}
Posted by: Guest on July-04-2021

Code answers related to "C"

Browse Popular Code Answers by Language