Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1.  
  2. #include <stdio.h>
  3. //#include "hangman.h"
  4. #include "hangman.c"
  5. #include <time.h>
  6.  
  7.  
  8.  
  9. int main (){
  10. char secret_array[30];
  11. srand(time(NULL));
  12.  
  13. get_word(secret_array);
  14. hangman(secret_array);
  15.  
  16.  
  17.  
  18. return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement