Advertisement
-florian66-

test

Dec 11th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6.     FILE* words = fopen("mots_fr.txt", "r");
  7.     unsigned char *word;
  8.     char i;
  9.  
  10.  
  11.  
  12.    fscanf(words, "%s\n",word);
  13. //sprintf(word,"%s\n",word);
  14. printf(word);
  15.  
  16.  
  17. //printf("Hello world!\n");
  18.  
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement