• 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

strtok()

March 21, 2014 by Dhaval Dave

Function Strtok

char * strtok ( char * str, const char * delimiters );
What it does : Split string into tokens
A sequence of calls to this function split str into tokens,
which are sequences of contiguous characters separated by any of
the characters that are part of delimiters

Example

/* strtok example */


int main ()
{
  char str[] ="This-is Go,Hired Site.";
  char * pch;
  printf ("Splitting string "%s" into tokens:n",str);
  printf ("--------");
  pch = strtok (str," ,.-"); // ',' '.' and '-' will be removed
  while (pch != NULL)
  {
    printf ("%sn",pch);
    pch = strtok (NULL, " ,.-");
  }
  return 0;
}
Output:
Splitting string “This-is Go,Hired Site.” into tokens:
——–
This is Go Hired Site

Similar Articles

Filed Under: problem Tagged With: Array, 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

Find the smallest window in a string containing all characters of another string

Flipkart SDET Interview Experience

Reversal of LinkedList

Trapping Rain Water

Find shortest distances between every pair of vertices ( Dynamic Programming Floyd Warshall Algorithm)

Find the kth number with prime factors 3, 5 and 7

Find two non repeating elements in an array of repeating elements

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

Mirror of Tree

SAP Hiring Off-Campus General Aptitude

Find loop in Singly linked list

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

How strtok() Works

Naurki.com Security Breach

Generic Object Oriented Stack with Template

Microsoft BING Interview Experience

Doubly linked list

Puzzle : 100 doors in a row Visit and Toggle the door. What state the door will be after nth pass ?

Cisco Hiring Event 21st – 22nd Feb 2015

LeetCode: Binary Tree Maximum Path Sum

Serialise Deserialise N-ary Tree

1014 Practice Question of New GRE – Princeton

Possible sizes of bus to carry n groups of friends

Spanning Tree

Find Nearest Minimum number in left side in O(n)

The greedy coins game Dynamic Programming

Print vertical sum of all the axis in the given binary tree

‘N’ Story Building, with 1,2,3 steps how many ways can a person reach top of building.

How Radix sort works

Word Break Problem

Copyright © 2026 · Genesis Framework · WordPress · Log in