+ 1
How to print this pattern using c or c++?
***** * * * * * * * * *****
2 Respuestas
+ 2
Sree use a for loop (for row count as 6)... in for loop have another for loop (for column count as 5)... print * in column loop if row is first or last.. else print space..
irrespective of row, print star for first and last column
let me know if you have any further questions
+ 1
thx Ketan Lalcheta