I'm doing a project for college, the code already reads the files and splits the lines taking into account the ";", how can I write these tokens into variables?
struct informacaoFicheiroInput{
int id;
int acompanhantes;
char tipo[11];
int entrada;
int saida;
int servico;
};
void lerFicheiroInput(){
struct informacaoFicheiroInput informacao[20];
FILE* file;
file = fopen("input.txt","r");
if(file == NULL){
printf("Não foi possivel abrir o arquivo.\n");
}
char line[20], *token, dados[11][20];
while(fgets(line, 100, file) != NULL){
int count = 0;
token = strtok(line,";");
while(token != NULL) {
dados[count++] = token;
token = strtok(NULL, ";");
}
}
}
The input file is of the genre:
10 ; Visitante ; 10 ; 19 ; 2
2 ; 1 ; Funcionario ; 8 ; 0
3 ; 2 ; Diretor ; 12 ; 19
4 ; Visitante ; 8 ; 0 ; 3