Advertisement
aj423

Pattern

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