• 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

CodeChef’ RRCOPY

Facebook Interview Question : Interleave List

Fibonacci Hashing & Fastest Hashtable

Find the element that appears once others appears thrice

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

VMWare SDEII Interview

Find Percentage of Words matching in Two Strings

Coin Collection Dynamic Programming

Sequence Finder Dynamic Programming

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

Printing intermediate Integers between one element & next element of array

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

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

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

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

Find two non repeating elements in an array of repeating elements

Longest Increasing Subsequence

1014 Practice Question of New GRE – Princeton

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 ?

Urban Ladder Written Test.

Maximum sum contiguous subarray of an Array

Flipkart SDET Interview Experience

SAP Off Campus Hiring_ March 2015 Verbal Skills

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

Walmart Labs Interview Experience

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

Diagonal Traversal of Binary Tree

Rectangular chocolate bar Create at least one piece which consists of exactly nTiles tiles

TicTacToe Game As Asked in Flipkart

Word Break Problem

Copyright © 2026 · Genesis Framework · WordPress · Log in