savovaap_

55*Triangle

Mar 29th, 2023
739
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.     int e = 55;
  6.  
  7.     for(int i = 1; i <= e; i++)
  8.     {
  9.         for(int j = 1; j <= i; j++)
  10.         {
  11.             printf("*");
  12.         }
  13.         printf("\n");
  14.     }
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment