This repository has been archived on 2025-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2024-09-20 14:17:13 +03:00

18 lines
382 B
C

#include <stdio.h>
#include <string.h>
int main()
{
char row[80] = "02.01.2020 22:00;1;10615801;0;1978337;1269010;2799999;2660199;202531";
char *token;
/* get the first token */
token = strtok(row, ";");
/* walk through other tokens */
while( token != NULL ) {
printf( "%s\n", token);
token = strtok(NULL, ";");
}
return 0;
}