Following is the program to print – The Left half of the Pyramid
#include<stdio.h>
int main(){
int n;
printf("Input number of rows ");
scanf("%d",&n);
for(int i=1;i<=n;i++){
for(int j=1;j<=i;j++){
printf("*");
}
printf("\n");
}
return 0;
}Following is the program to print – The Left half of the Pyramid
#include<stdio.h>
int main(){
int n;
printf("Input number of rows ");
scanf("%d",&n);
for(int i=1;i<=n;i++){
for(int j=1;j<=i;j++){
printf("*");
}
printf("\n");
}
return 0;
}