vote up -2 vote down star

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.

flag
Use proper grammar. Tell us what language you're programming in. – d03boy Aug 24 at 5:58
Is it your homework? ;) – Dmitriy Aug 24 at 5:58
1  
@d03boy: Language looks like C – Dmitriy Aug 24 at 5:59
1  
Smells like unannounced homework, you've not specified a language and really you could put some vague effort into spelling, grammar, and formatting. – annakata Aug 24 at 5:59
1  
"const" is typically a reserved word. I would not include it in any code as a variable name. – TheJacobTaylor Aug 24 at 6:05
show 5 more comments

2 Answers

vote up 1 vote down

Telling what language this is, and what the result is of running your code would be helpful...

This piece of code looks really broken:

strcmp(append_test_data,constraint==true)

You are first comparing a string to a boolean, then comparing the result from that to another string. I think that you ment to compare the strings instead:

strcmp(append_test_data,constraint) == true

If this is C, the strcmp function doesn't return a boolean, it returns an integer. If the strings are not equal the result is a non-zero value indicating where the strings started to differ, so it will rarely be the same value as defined for the true constant. Besides, your intention seems to be to test for equality, so you would be interrested in the zero value, not the non-zero value.

So, to check if the strings are equal, you compare the result to zero:

strcmp(append_test_data,constraint) == 0
link|flag
im using c.yup, i compare string to the string.i refer the book just now its returns integer.thanks..how about array? – ubi Aug 24 at 7:08
vote up 2 vote down

There are so many problems with that code:

  • 'const' is a reserved word - use a different name.
  • The declaration of the file is wrong.
  • You haven't told the program what the file name is.
  • You haven't opened the file
  • Where is append_test_data set?
  • The strcmp test is wrong.
  • You have declared constraint to be MAX_PARAMETER but are reading 500 chars (how are the two related?)
  • etc etc

You have much to learn, grasshopper.

I suggest that you first learn how to open a file, read each line (and print it out) and then close the file when you have finished with it. Print out any errors encountered at each stage.

Then worry about doing the logic of the program.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.