Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
316 views

What are the differences between strtok and strsep in C

Could someone explain me what differences there are between strtok() and strsep()? What are the advantages and disadvantages of them? And why would I pick one over the other one.
1
vote
3answers
161 views

strsep() usage and its alternative

#include <stdio.h> #include <string.h> int main() { char *slogan = "together{kaliya} [namak]"; char *slow_gun = strdup(slogan); char *token = strsep(&slow_gun, "{"); printf ("\n ...