C Practical and Assignment Programs-Pattern Printing 9
In this video we are going to write a program to print a pattern in form of diamond shape consisting of "*". We are going to use nested for loops ie one loop inside another.The full description of question is provided below. Now this program is written in C programming language but will work in C++.Feel free to provide your suggestion.
Q. To print various patterns using loop constructs like:
*
***
*****
*******
**********
*******
*****
***
*