Do it like this:
char s[256]; strcpy(s, "one two three"); char* token = strtok(s, " "); while (token) { printf("token: %s\n", token); token = strtok(NULL, " "); }
Note: strtok
modifies the string its tokenising, so it cannot be a const char*
.
Related Posts:
- Data argument not used by format strings in C
- Simple way to check if a string contains another string in C?
- Proper way to empty a C-String
- How do you allow spaces to be entered using scanf?
- How to format strings using printf() to get equal length in the output
- How to format strings using printf() to get equal length in the output
- realloc(): invalid next size when reallocating to make space for strcat on char *
- Split string with multiple delimiters using strtok in C
- Pointer to a string in C?
- Convert long long to string in C?
- How do I check if a string contains a certain character?
- Convert Char to String in C
- How does strtok() split the string into tokens in C?
- How to convert an int to string in C?
- How to convert an int to string in C?
- How do I properly compare strings in C?
- How to remove .html from URL?
- How to convert an int to string in C?
- How to convert an int to string in C?
- What does strcmp() exactly return in C?
- How do I create an array of strings in C?
- How to check if a string is a number?
- How to convert integer to string in C?
- How do I lowercase a string in C?
- How do I create an array of strings in C?
- Return char[]/string from a function
- How do I concatenate const/literal strings in C?
- How to do scanf for single char in C
- Sign extend a nine-bit number in C
- Break statement not within loop or switch in C
- How to properly malloc for array of struct in C
- How to create an array of strings in C?
- Cache Simulator in C
- Where is the C auto keyword used?
- expected expression before ‘{‘ token
- C Vector/ArrayList/LinkedList
- Convert char array to a int number in C
- Bind failed: Address already in use
- What is the difference between %f and %lf in C?
- What is stdin in C language?
- How to pass 2D array (matrix) in a function in C?
- How to compile makefile using MinGW?
- Mapping a numeric range onto another
- Why are hexadecimal numbers prefixed with 0x?
- Portable way to check if directory exists [Windows/Linux, C]
- Allocating string with malloc
- too many arguments for format [-Wformat-extra-args]
- How to copy a char array in C?
- cast to pointer from integer of different size, pthread code
- Invalid type argument of unary ‘*’ (have ‘int’) Error in C
- Why do I get “cast from pointer to integer of different size” error?
- How to convert integer to char in C?
- Where to find the complete definition of off_t type?
- struct has no member named
- printf not printing to screen
- Initializing array of structures
- Still Reachable Leak detected by Valgrind
- Assembly x86 – “leave” Instruction
- What is signed integer overflow?
- When to use const char * and when to use const char []
- What do numbers using 0x notation mean?
- Can I create an Array of Char pointers in C?
- Does stack grow upward or downward?
- Convert Little Endian to Big Endian
- Excess elements of scalar initializer for pointer to array of ints
- error C2371: ‘functionname’ redefinition: different basic types
- How does one represent the empty char?
- How to write to a file using open() and printf()?
- note: previous implicit declaration of ‘point_forward’ was here
- Can I define a function inside a C structure?
- What exactly is meant by “de-referencing a NULL pointer”?
- getc() vs fgetc() – What are the major differences?
- Can’t understand the working of getint() in C as per K&R
- Trim a string in C [duplicate]
- How to remove first character from C-string?
- How to concatenate string and int in C?
- Standard function to replace character or substring in a char array?
- Realloc Invalid Pointer in C
- What tools are there for functional programming in C?
- typedef fixed length array
- In C, what exactly happens when you pass a NULL pointer to strcmp()?
- Why and when to use static structures in C programming?
- Where does linux store my syslog?
- Example of waitpid() in use?
- Invalid write of size 1
- How to solve static declaration follows non-static declaration in GCC C code?
- Can a function return two values?
- C: warning: excess elements in array initializer; near initialization for ‘xxx’ ; expects ‘char *’, but has type ‘int’
- How to know what the ‘errno’ means?
- Printf was not declared in this scope
- warning: missing terminating ” character [enabled by default]
- How to free memory from char array in C
- Can I get Unix’s pthread.h to compile in Windows?
- Initializing 2D char array in C
- FFT in a single C-file
- Process exited with return value 3221225477
- malloc(sizeof(int)) vs malloc(sizeof(int *)) vs (int *)malloc(sizeof(int))
- %p Format specifier in c
- “Nothing to be done for makefile” message
- What is the difference between signed and unsigned int