Homec programing Write the program to print the same values of row & column in pyramid. heera babu -December 25, 2015 0 #include <stdio.h>int main(){ int i, j; for(i=1;i<=5;i++) { for(j=5;j>=i;j--) { printf("%d",j); } printf("\n"); } return 0;}------------------------------------------------------------------------------------------------------------------------Sample Output: Tags: c programing program to print pyramid Facebook Twitter