include<stdio.h>void pyramid(int n){int i,j; for(i=1;i<=n;i++) {for(j=0;j<n-i;j++) printf(" "); for(j=1;j