Advertisement
shegues

meow.c

Jan 24th, 2021
730
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include<stdio.h>
  2. void meow(int n);
  3. int main(void)
  4. {
  5.     meow(4);
  6. }
  7. void meow(int n)
  8. {
  9.     for(int i = 0; i < n; i = i + 1)
  10.     {
  11.          printf("meow\n");
  12.     }
  13.    
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement