• 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

TicTacToe Game As Asked in Flipkart

Find if two rectangles overlap

SAP Off Campus Hiring_ March 2015 Computer Skills

Find min element in Sorted Rotated Array (With Duplicates)

Count Possible Decodings of a given Digit Sequence

Convert Decimal to Roman numbers / Romanizer HackerEarth Code

Maximum sum contiguous subarray of an Array

Find Pythagorean Triplets in an array in O(N)

Client Server C program

Test Cases for Round Function

Amazon Interview On-Campus For Internship – 1

Given a sorted array and a number x, find the pair in array whose sum is closest to x

Best Java Book | Top Java Programming Book for Beginners

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

Rectangular chocolate bar Create at least one piece which consists of exactly nTiles tiles

Sort an array according to the order defined by another array

Given array of 0’s and 1’s. All 0’s are coming first followed by 1’s. find the position of first 1

Trie Dictionary

Coin Collection Dynamic Programming

Printing each word reverse in string

System Design: Designing a LLD for Hotel Booking

Right view of Binary tree

Code Chef PRGIFT Solution

Reverse a Linked List in groups of given size

Generic Object Oriented Stack with Template

Reliance Jio Software Developer Interview Experience

Apriori algorithm C Code Data Mining

Difference between a LinkedList and a Binary Search Tree BST

Circular Linked List

Implement a generic binary search algorithm for Integer Double String etc

Copyright © 2025 · Genesis Framework · WordPress · Log in