C Program To Draw Pyramid of Numbers, using While Loop
Satish B
http://technotip.com/7101/c-program-to-draw-pyramid-of-numbers-using-while-loop/
Lets write a C program to draw / print / display a pyramid / triangle formed from Decimal numbers(0, 1, 2, 3, 4, 5, 6, 7, 8, 9), using while loop.
Inside first inner while loop we print the adequate number of space for each row. Inside the second inner while loop we actually print the numbers needed for each row.
At the end, result will be a pyramid with the number of rows as input by the user.
C Programming Interview / Viva Q&A List http://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert http://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=qxUYMf-Fn18
9023614 Bytes