PYRAMID STAR PATTERN

Consider the following I/O samples. SAMPLE INPUT: 3 SAMPLE OUTPUT: * * * * * * C PROGRAM: #include <stdio.h> int main() { int row,col,spc,n; scanf("%d",&n); for(row=1; row<=n; ++row) { for(spc=1; spc<=n-row; spc+...