Printing Six Different Triangle Patterns in C

Pattern 1: Inverted Right Triangle This pattern displays a right triangle with the right angle at the top-left corner. The number of asterisks decreases as we move down each row. 1 #define _CRT_SECURE_NO_DEPRECATE 2 #include <stdio.h> 3 4 int main(void) 5 { 6 int height; 7 int row, col; 8 9 printf("Enter th ...

Posted on Wed, 13 May 2026 08:35:29 +0000 by zzz