C Program to Print Mirror of Right Angled Triangle
Pyramid Program in C Programming - Mirror Image of Right Angled Triangle Print the Following Pattern of Pyramid [crayon-609dd77acbfec791666287/] Program : [crayon-609dd77acbff6028575758/] Explanation of C Program :'space_count' variable is used as subscript variable used in for loop. 'no_of_spaces' variable is used to keep track of no_of_spaces to be printed. Note that Space width mentioned in printf of second inner loop is "%2c" , that's why we have printed 2 spaces inside first inner loop.Why 3 for loops are used ?Outer For Loop - Specify No of Rows to be Printed First [...]