Advertisement
Mehrin_97

Assembly lab ak mam (04) 20 oct

Oct 20th, 2019
123
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,n;
  5. for(i=0;i<5;i++)
  6. {
  7. for(j=0;j<i;j++)
  8. {
  9. printf("* ");
  10. }
  11. printf("\n");
  12.  
  13. }
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement