Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main() {
  5. int c = 100;
  6. while (c--) {
  7. system("CLS");
  8. for (int i = c; i >= 0; i--)
  9. printf(" ");
  10. printf("*");
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement