Как вы токенизируете, когда читаете из файла в C?
текстовый файл:
PES 2009; Konami; DVD 3; 500,25; 6
Assasins Creed; Ubisoft; DVD; 598,25; 3
Inferno; EA; DVD 2; 650,25; 7
char *tokenPtr;
fileT = fopen("DATA2.txt", "r"); /* this will not work */
tokenPtr = strtok(fileT, ";");
while(tokenPtr != NULL ) {
printf("%s\n", tokenPtr);
tokenPtr = strtok(NULL, ";");
}
Хотелось бы распечатать:
PES 2009
Konami
.
.
.