0
Hey, can you help me out , this is a program to print the matrix as z, how can i make the program print the letter z upside down
8 Answers
+ 5
U also missing return type in main function 🤣
+ 2
Duha you're welcome..
+ 1
Where is program?
+ 1
Have ypu already tried reverse Z? What problem did you face? If you have any errors in that particular code you can ask.
As you have already tried Z, reverse(upside down) one won't be very hard. Give it a try. If there is any error then show your attempt.
0
🇮🇳Omkar🕉
I want to know the changes in the program so that z is printed upside down
0
You mean to print in z pattern?
If yes, print matrix by loop, fill values which are not needed by space..
If you mean to print N patterns (upside down), then just Interchange i, j (i.e row as coloum value, column as row value, as
a[ i ][ j ] to a[ j ][ i ])...
Hope this helps you...
0
Jayakrishna🇮🇳
Yes, this helped me, thank you so much