I am trying to read from the while questions.txt which has the following format:
Question\n
Difficulty:Cost:Prize\n
Correct Answer\n
Answer 1\n
.
.
.
Answer i\n
\n
The following is a function that reads from questions.txt and stores it to a temporary node to be added to a linked list.
pQuestionType loadQuestions(pQuestionType pFirst)
{
pQuestionType pTemp = malloc(sizeof(pQuestionType));
FILE* pFile;
string sFilename, sTemp;
char cDump;
int nTemp, n=0;
gotoxy(0,0);
system("cls");
printf("Enter file name: ");
gets(sFilename);
pFile = fopen(sFilename, "rt");
while(!feof(pFile))
{
printf("Iteration \n");
fgets(sTemp, 255, pFile);
strcpy(pTemp->sQuestion, sTemp);
pTemp->sQuestion[strlen(sTemp)-1] = '\0';
printf("Add question success\n");
fscanf(pFile, "%d%c", &nTemp, &cDump);
pTemp->nDifficulty = nTemp;
printf("Add difficulty success\n");
fscanf(pFile, "%d%c", &nTemp, &cDump);
pTemp->nCost = nTemp;
printf("Add cost success\n");
fscanf(pFile, "%d%c", &nTemp, &cDump);
pTemp->nWinnings = nTemp;
printf("Add winnings success\n");
fgets(sTemp, 255, pFile);
strcpy(pTemp->sCorrect, sTemp);
pTemp->sCorrect[strlen(sTemp)-1] = '\0';
strcpy(pTemp->sAnswers[0], sTemp);
pTemp->sAnswers[0][strlen(sTemp)-1] = '\0';
printf("Add answer success\n");
for(n=1; n<10; n++)
{
fgets(sTemp, 255, pFile);
if(*sTemp == '\n')break;
strcpy(pTemp->sAnswers[n], sTemp);
pTemp->sAnswers[n][strlen(sTemp)-1] = '\0';
}
printf("Add choices success\n");
printf("\n");
pFirst = addQuestion(pFirst, pTemp);
if(*sTemp == EOF) break;
}
fclose(pFile);
return pFirst;
}
I crash at the third iteration when the program tries to read the difficulty of my third question. What causes this and what can I do to fix my code?

pTemp->sQuestion[strlen(sTemp)-1] = '\0';will do nasty things if strlen() happens to be zero. 2) feof() is always wrong 3) does your struct contain pointers? 4) check the return value from sscanf() 5) maybe check the character in cDump, too. 6) diagnostic output should go to stderr. 7) ` if(*sTemp == EOF)` You are comparing a character and an int here. – wildplasser Dec 8 '12 at 14:56stringis not a C data type. What is it? 10) gets() is an unsafe function, especially when given unknown data types as an argument. 10) gotoxy() is a non standard function. 11) Bingo! – wildplasser Dec 8 '12 at 15:02