Тема: як перевести цей код з с++ в сі
ifstream file1("student.txt");
start = NULL;
while (!file1.eof()){
int k=0;
file1.getline(str[quantity], 200);//зчитування рядка
//розбиття рядка на лексеми
lexems[k]=strtok(str[quantity],"\t");
...
}
file1.close();