Coding Pyramid Patterns is easier than you think
Basics
Learning how to print a row & a column is very important for any pattern program.
1.Printing a row
Printing a new line so that every row is printed in a new line
for(int row=1;row<=n;row++){
printf("\n");
}
2.Reverse printing a row
Prin...
abhikb.hashnode.dev8 min read