• 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

Regular Expression Matching

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

Find loop in Singly linked list

Level order traversal in Spiral form

Maximum difference between two elements s.t larger element appears after the smaller number

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

VMWare Openings

Binary Tree in Java

1014 Practice Question of New GRE – Princeton

Doubly linked list

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

SAP Off Campus Hiring_ March 2015 Verbal Skills

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

Printing intermediate Integers between one element & next element of array

The greedy coins game Dynamic Programming

Password Predictor

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

Memory Efficient LinkedList

Sort an array according to the order defined by another array

Apriori algorithm C Code Data Mining

Convert Decimal to Roman numbers / Romanizer HackerEarth Code

Minimum insertions to form a palindrome

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

The Magic HackerEarth Nirvana solutions Hiring Challenge

BlueStone E-commerce Interview Experience

In Given LinkedList Divide LL in N Sub parts and delete first K nodes of each part

Reverse a Linked List in groups of given size

Given Set of words or A String find whether chain is possible from these words or not

Adobe Interview Questions 8 month Exp

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

Copyright © 2026 · Genesis Framework · WordPress · Log in