my problem is next:
char str[25] = "exsample=string=to=split";
char a[2] = "=";
char* token;
token = strtok(str, a);
as you know that code saves first part "exsample"
to string token
but how I can take next part of line? meaning string
and all after it to
split