Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #include <cs50.h>
  2. #include <stdio.h>
  3.  
  4. int
  5. main (void)
  6. {
  7. int height;
  8.  
  9.  
  10. printf ("Enter a number: ");
  11. scanf ("%d", &height);
  12.  
  13. char hash[] = "#";
  14. int width = 0;
  15.  
  16.  
  17.  
  18. {
  19. while (width < height)
  20. {
  21.  
  22.  
  23. printf (hash);
  24. printf ("\n");
  25. width++;
  26.  
  27. strcat (hash, "#");
  28.  
  29. }
  30.  
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement