C strtok() Function

You are Here:

C strtok() Function

The strtok() breaks string into a series of tokens using the given delimiter.

Example

C Compiler
#include <string.h> #include <stdio.h> int main() { char str[] = "wikimass.com"; char s[] = "."; char *token; token = strtok(str, s); while(token != NULL) { printf("%s\n", token); token = strtok(NULL, s); } return 0; }

Output

wikimass com

Syntax

char *strtok(char *str, const char *delim)

Parameter Values

ValueTypeExplanation
strRequiredSpecifies a string
delimRequiredSpecifies a delimiter to break the given string.

Return Value

ValueExplanation
AddressReturns a pointer to the first token found in the string.
NULLIf no token found.

Reminder

Hi Developers, we almost covered 98% of String functions and Interview Question on C with examples for quick and easy learning.

We are working to cover every Single Concept in C.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author