Advertisement
Guest User

Untitled

a guest
Aug 30th, 2014
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.28 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. #define MAX 50;
  5.  
  6. void enforcado(int enf)
  7. {
  8.     enf = 1 + 2;
  9. }
  10.  
  11. int main()
  12. {
  13.     int tamanho, erros, pontos, menu, i, enf;
  14.     char completa[MAX]; //completaTemp[MAX], letra, temp1, temp2, palavra[MAX];
  15.  
  16.     enforcado(enf);
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement