• 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 the number ABCD such that when multipled by 4 gives DCBA.

Naurki.com Security Breach

Hackerearth : Counting Subarrays

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

TicTacToe Game As Asked in Flipkart

LeetCode: Container With Most Water

Password Predictor

Python Dictionaries

HackeEarth Flipkart’s Drone

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

Check if an array has duplicate numbers in O(n) time and O(1) space

SAP Off Campus Hiring_ March 2015 Sample Questions

Binary Tree Isomorphic to each other

Implement a generic binary search algorithm for Integer Double String etc

Get Minimum element in O(1) from input numbers or Stack

Knight Tour Problem (Graph – Breadth First Search)

Flipkart SDET Interview Experience

Reversal of LinkedList

Python String and numbers

Maximum path sum between two leaves

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

Stock Buy Sell to Maximize Profit

Coin Collection Dynamic Programming

SAP Hiring Off-Campus General Aptitude

Number of Islands BFS/DFS

Leetcode: Merge Intervals

Find if a binary tree is height balanced ?

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

Walmart Labs Interview Experience

Difference between a LinkedList and a Binary Search Tree BST

Copyright © 2026 · Genesis Framework · WordPress · Log in