• 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

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

Find min element in Sorted Rotated Array (Without Duplicates)

C++ OOPs Part2

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

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

Sequence Finder Dynamic Programming

Circular Linked List

Adobe Interview Questions 8 month Exp

Count Possible Decodings of a given Digit Sequence

Printing intermediate Integers between one element & next element of array

Generate largest number arranging a no. of given non negative integer numbers

C Program for TAIL command of UNIX

Code Chef PRGIFT Solution

Apriori algorithm C Code Data Mining

Count number of ways to reach a given score in a game

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

Inorder and Preorder traversals of a Binary Tree given. Output the Postorder traversal of it.

DFS (Depth First Search)

Leetcode: Edit Distance

Given a string, find the first character which is non-repetitive

TicTacToe Game As Asked in Flipkart

Maximum of all subarrays of size k

BFS (Breath First Search)

Printing each word reverse in string

CodeChef’ RRCOPY

Edit Distance ( Dynamic Programming )

Binary Tree in Java

Implement LRU Cache

Amazon Interview Experience – SDE Chennai

Copyright © 2026 · Genesis Framework · WordPress · Log in