• 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 min element in Sorted Rotated Array (With Duplicates)

Find min element in Sorted Rotated Array (Without Duplicates)

Flipkart Set 1 On Campus with Answers

N Petrol bunks or City arranged in circle. You have Fuel and distance between petrol bunks. Is it possible to find starting point so that we can travel all Petrol Bunks

Python String and numbers

Find and print longest consecutive number sequence in a given sequence in O(n)

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

Count Possible Decodings of a given Digit Sequence

Naurki.com Security Breach

Circular Linked List

Sort Stack in place

Facebook Interview Question : Interleave List

N teams are participating. each team plays twice with all other teams. Some of them will go to the semi final. Find Minimum and Maximum number of matches that a team has to win to qualify for finals ?

Python Array String

Memory Efficient LinkedList

Daughter’s Age VeryGood Puzzle

Implement a generic binary search algorithm for Integer Double String etc

Code Chef PRGIFT Solution

Test Cases for Round Function

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

25 horses 5 tracks Find 3 fastest puzzle

Leetcode: Merge Intervals

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

Sequence Finder Dynamic Programming

Reverse a Linked List in groups of given size

BFS (Breath First Search)

Diagonal Traversal of Binary Tree

Wrong Directions given find minimum moves so that he can reach to the destination

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

Mirror of Tree

Copyright © 2026 · Genesis Framework · WordPress · Log in