C Program To Display Right Angled Triangle With Alphabets, using For Loop
Satish B
https://technotip.com/7652/c-program-to-display-right-angled-triangle-with-alphabets-using-for-loop/
Lets write a C program to display/print/output a right angled triangle pattern formed with Capital Letter English Alphabets, using nested for loop.
Note: Row number is equal to the number of elements present in that row.
Inside inner for loop we check if the value of variable count is 91(ASCII Value of Z is 91). If true, we resent the value of count to 65(ASCII Value of A is 65).
C Programming Interview / Viva Q&A List https://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert https://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=WYDm6zrPhkg
6517629 Bytes