void search(FILE *fp){
char lines[81];
char iden[11];
int i = 0;
int count = 1;
while(!feof(fp)){
fgets(lines,80,fp);
// If the line dosesn't start with #, space, or tab, it has identifier
if (lines[0] != '#' && lines[0] != ' ' && lines[0] != '\t'){
// An identifier ends with ':'
while (lines[i] != ':'){
iden[i] = lines[i];
++i;
}
ins(iden, count);
}
++count;
}
}
I am getting an error like this:
p4.c:93:12: runtime error: index 11 out of bounds for type 'char [11]'
p4.c:92:17: runtime error: index 81 out of bounds for type 'char [81]'
p4.c:93:22: runtime error: index 81 out of bounds for type 'char [81]'
Segmentation fault
Note: My input file contains data according to error checks above. I mean each line as at most 80 characters including \n and the max size of an identifier is 10. And lines that doesn't start with '#' or space or tab contains an identifier at the begining of the line that ends with ':' with maximum size of 10 including ':'
It is happening in the second while loop on the above code? Why am I getting this error?
p.s: I already opened my file and checked it in my main method