Write a C Program to print half pyramid.

Write a C Program to print half pyramid.

#include <stdio.h> int main() {     int i,j,rows;     printf("Enter the number of rows: ");     scanf(…

Load More
That is All