Advertisement
stsharin

Untitled

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