Advertisement
Sierra_ONE

Art Symbols

Sep 17th, 2023 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.31 KB | Source Code | 0 0
  1. #include <stdio.h>
  2.  
  3. int main (void){
  4.  
  5.     printf("*");
  6.     printf("\n**");
  7.     printf("\n***");
  8.     printf("\n**");
  9.     printf("\n*");
  10.     printf("\n\\");
  11.     printf("\n \\\\");
  12.     printf("\n  \\\\\\");
  13.     printf("\n   \\\\\\\\");
  14.     printf("\n   ////");
  15.     printf("\n  ///");
  16.     printf("\n //");
  17.     printf("\n/");
  18.  
  19.  
  20.  
  21.     return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement