Advertisement
kylemsguy

pause.h

Dec 10th, 2011
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. #ifndef PAUSE_H
  2. #define PAUSE_H
  3. #include <stdio.h>
  4. void pause(){
  5.      printf("Press enter to continue...");
  6.      getchar();
  7.      getchar();
  8. }
  9. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement