Advertisement
Guest User

Untitled

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