plusdigit.com
Program to print half pyramid as using * in C -
#include int main() { int i,j,rows; printf(“Enter the number of rows: “); scanf(“%d”,&rows); for(i=1;i
PlusDigit