I have a function void display_a_student() which uses two binary files. Firstly a binary1.dat and and index.dat which contains the offset of each student added to the binary1.dat.
I am trying to use the index to find the offset value for a student which is entered by the user, I am having trouble using the strcmp() function to compare the value entered to those values held in the index.dat file.
Any help would be much appreciated here is the code so far.
void display_a_student()
{
struct student aStudent;
char studentNumSearch[11];
int index=0;
int found = false;
fp = fopen("binary1.dat", "a+b");
fp1 = fopen("index.dat", "a+b");
printf("\n\nWhich student are you searching for?");
scanf("%s", studentNumSearch);
fflush(stdin);
while(!found && index < 10)
{
if(strcmp(studentNumSearch,fp1[index].studentNum)==0)
{
found = true;
}
index++;
}
if (found)
{
fseek(fp, fp1[index].offset, SEEK_SET);
fread(&aStudent,sizeof(struct student),1,fp);
printf("\n\nThe student name is %s\n",aStudent.firstName);
}
else
{
printf("\n\nNo such student\n");
}
fclose( fp ); /* fclose closes file */
fclose (fp1);
getchar();
}
I am certain the line: if(strcmp(studentNumSearch,fp1[index].studentNum)==0) is where i am going wrong as i am unsure how to point to the file while using the strcmp() function. - edited code for relevance.
strcmp. – Gareth McCaughan Mar 31 '11 at 12:26studentNumSearchandstudentNumfrom the binary file are NULL-terminated? Otherwise strcmp will continue to compare characters until it differs (which most likely it will in the binary file). You can also usestrncmpif you know the length. – fnokke Mar 31 '11 at 12:30