JoyMozumder

print name

Jan 26th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include<stdio.h>
  2. int name(m);
  3. int main()
  4. {
  5. int n;
  6. scanf("%d",&n);
  7. name(n);
  8. return 0;
  9. }
  10. int name(m)
  11. {
  12. int i;
  13. for(i=0;i<m;i++)
  14. {
  15. printf("JOY\n");
  16. }
  17. return 0;
  18. }
Add Comment
Please, Sign In to add comment