Site icon Matistics

C – 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;
}
Exit mobile version