Advertisement
harvian

Untitled

Oct 26th, 2016
60
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.  
  3. int main()
  4. {
  5. for(int i=1;i<=5;i++)
  6. {
  7. for(int j=1;j<=i;j++)
  8. printf("*");
  9. printf("\n");
  10. }
  11.  
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement