• 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

Check Binary Tree is Binary Search Tree or not

Templates in C++

Binary Tree Isomorphic to each other

Adobe Interview Questions 8 month Exp

Generate next palindrome number

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

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

Connect n ropes with minimum cost

Microsoft BING Interview Experience

Hackerearth : Counting Subarrays

Maximum occurred Smallest integer in n ranges

Serialise Deserialise N-ary Tree

Python List

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

System Design: Designing a LLD for Hotel Booking

Edit Distance ( Dynamic Programming )

Find two non repeating elements in an array of repeating elements

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

Mirror of Tree

Binary Tree in Java

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

VMWare SDEII Interview

Find min element in Sorted Rotated Array (With Duplicates)

LeetCode: Container With Most Water

Python Dictionaries

Length of the longest substring without repeating characters

Find Percentage of Words matching in Two Strings

Memory Efficient LinkedList

C++ OOPs Part2

Code Chef PRGIFT Solution

Copyright © 2026 · Genesis Framework · WordPress · Log in