• Skip to primary navigation
  • Skip to content
  • Skip to primary sidebar
  • Skip to secondary sidebar

GoHired

Interview Questions asked in Google, Microsoft, Amazon

Join WeekEnd Online Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

  • Home
  • Best Java Books
  • Algorithm
  • Internship
  • Certificates
  • About Us
  • Contact Us
  • Privacy Policy
  • Array
  • Stack
  • Queue
  • LinkedList
  • DP
  • Strings
  • Tree
  • Mathametical
  • Puzzles
  • Graph

How strtok() Works

April 13, 2015 by Dhaval Dave

strtok() : Split string into tokens
Syntax :

char * strtok ( char * str, const char * delimiters );

Parameters
str C string to truncate.Notice that this string is modified by being broken into smaller strings (tokens). Alternativelly, a null pointer may be specified, in which case the function continues scanning where a previous successful call to the function ended.

delimiters   C string containing the delimiter characters. These can be different from one call to another.

Example

/* strtok example */
 #include <stdio.h>
 #include <string.h>
int main (){
char str[] ="- This, a sample string.";
char * pch;
printf ("Splitting string \"%s\" into tokens:\n",str);
pch = strtok (str," ,.-");
while (pch != NULL){
printf ("%s\n",pch);
pch = strtok (NULL, " ,.-");
}
return 0;
}

code courtesy : cplusplus.com

Why Function strtok() is not Thread Safe / reentrant

The strtok() function uses a intermediate static buffer while parsing, and reuse them at each call so it’s not thread safe.

Solution :

Use  strtok_r() to use strtok as thread safe

 

Similar Articles

Filed Under: Adobe Interview Questions, problem Tagged With: c, string

Reader Interactions

Primary Sidebar

Join WeekEnd Online/Offline Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

Join WeekEnd Online/Offline Batch from 4-April-2020

WhatsApp us

Secondary Sidebar

Custom Search

  • How I cracked AMAZON
  • LeetCode
  • Adobe
  • Amazon
  • Facebook
  • Microsoft
  • Hacker Earth
  • CSE Interview

Top Rated Questions

Word Break Problem

SAP Interview Questions

Password Predictor

write a c program that given a set a of n numbers and another number x determines whether or not there exist two elements in s whose sum is exactly x

Find loop in Singly linked list

Introduction To Number Theory ( Part 1 )

Find position of the only set bit

Possible sizes of bus to carry n groups of friends

Find an index i such that Arr [i] = i in array of n distinct integers sorted in ascending order.

Find Percentage of Words matching in Two Strings

LeetCode: Binary Tree Maximum Path Sum

Spanning Tree

Generate largest number arranging a no. of given non negative integer numbers

Generic Object Oriented Stack with Template

Coin Collection Dynamic Programming

SAP Off Campus Hiring_ March 2015 Verbal Skills

Check if an array has duplicate numbers in O(n) time and O(1) space

TicTacToe Game As Asked in Flipkart

Check a String is SUBSEQUENCE of another String Find Minimum length for that ( DNA Matching )

1014 Practice Question of New GRE – Princeton

How Radix sort works

Printing intermediate Integers between one element & next element of array

The Magic HackerEarth Nirvana solutions Hiring Challenge

K’th Largest Element in BST when modification to BST is not allowed

Printing Longest Common Subsequence

Mirror of Tree

Top 10 Interviews Techniqes for Campus Interview in IIT NIT BITS for MTech

Count number of ways to reach a given score in a game

Convert number to words java

Add Sub Multiply very large number stored as string

Copyright © 2025 · Genesis Framework · WordPress · Log in