-
Notifications
You must be signed in to change notification settings - Fork 0
/
unlimited.c
44 lines (42 loc) · 1006 Bytes
/
unlimited.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include<stdio.h>
#include<string.h>
int main()
{
int score=0;
const char s[2] = "-";
char*token;
char a[100];
char buf[1000];
FILE*F;
F=fopen("vo.txt","r");
while (!feof(F))
{
buf[0]='\0';
fgets(buf,1000,F);
token = strtok(buf, s);
if (token != NULL)
{
printf("enter the translation of %s : ",token);
scanf("%s",a);
}
while (token != NULL)
{
//la à partir de la ligne suivante ton token peut etre NULL à nouveau...
token = strtok (NULL, s);
// ce qui fait planter ton programme quand il essaie d'afficher une chaine NULL
printf("%s\n",token);
printf("%s",a); //
printf("%d",strcmp(a,token));
if(strcmp(token,a)==0) //||strcmp(info,"name")==0
{
printf("well done!");
score++;
}
else
{
printf("False! Maybe another day!");
}
}
}
fclose(F);
}