• 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

strtok()

Python String and numbers

25 horses 5 tracks Find 3 fastest puzzle

Word Break Problem

Reversal of LinkedList

Mirror of Tree

Circular Linked List

Apriori algorithm C Code Data Mining

Practo Hiring Experience

Adobe Interview Questions 8 month Exp

building with N steps, we can take 1,2,3 steps calculate number of ways to reach at top of building

Search element in a matrix with all rows and columns in sorted order

Maximum size of square sub matrix with all 1’s in a binary matrix

Common Ancestor in a Binary Tree or Binary Search Tree

Skiing on Mountains Matrix

There are N nuts and N bolts, u have to find all the pairs of nuts and bolts in minimum no. of iteration

ADOBE Aptitude C Language Test

SAP Off Campus Hiring_ March 2015 Computer Skills

LeetCode: Container With Most Water

Trie Dictionary

Right view of Binary tree

Printing intermediate Integers between one element & next element of array

Length of the longest substring without repeating characters

Given a float number convert it into the string WITHOUT using any inbuilt Function

Maximum occurred Smallest integer in n ranges

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

Interfaces in C++ (Abstract Classes in C++)

SAP Off Campus Hiring_ March 2015 Sample Questions

Microsoft BING Interview Experience

Copyright © 2026 · Genesis Framework · WordPress · Log in