I have a txt file like this:
const.txt file:
a,b,c,
d,e,f,
g,h,i,
I want to load them into a string array. Every row is a string. For example:"a,b,c," from the array, I want to compare to the string, append_test_data.this is from other function.i cant paste here.its too long function.
Every data will compare to the string from append_test_data. This is the code that I tried:
char const_file [100] ="constraints.txt"; FILE *in_const; if ((in_const = fopen(const_file, "rt")) == NULL) { fprintf(stderr, "Cannot open constraints file.\n"); getch(); exit(0); }
char constraint[100];
int id_const=1;
fseek(in_const,0,SEEK_END);
fseek(in_const,0,SEEK_SET);
while(!feof(in_const))
{
fgets(constraint,100,in_const);
id_const++;
for (int m=1;m <=id_const;m++)
{
if(strcmp(append_test_data,constraint)==0)//if i write printf("constraint is found=%s\n",constraint[m])it will b error cause m is int.i hv no idea for this
{
printf("constraint is found=%s\n",constraint);
printf("Append data is=%s\n",append_test_data);
getch();
exit(0);
}
}
everytime i run,it just compare to the last data in the array.
