Guest User

Untitled

a guest
Nov 17th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. #ifndef BATALHA_H_INCLUDED
  2. #define BATALHA_H_INCLUDED
  3. #include<stdio.h>
  4. #include<stdlib.h>
  5. #include<string.h>
  6. #define MAX 20
  7. void Inicia_matriz(char mapa[][MAX]);
  8. //inicia matriz com 42
  9. void Preenche_Boia(char mapa[][MAX]);
  10. //preenche com 10 boias
  11. void Imprime_Matriz(char mapa [][MAX]);
  12. //imprime matriz
  13. void Preenche_Submarino(char mapa[][MAX]);
  14. void Preenche_aviao(char mapa[][MAX]);
  15. void Preenche_porta_aviao(char mapa[][MAX]);
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23. #endif // BATALHA_H_INCLUDED
Add Comment
Please, Sign In to add comment