• 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

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

C++ OOPs Part1

Maximum path sum between two leaves

C Program for TAIL command of UNIX

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

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

Maximum sum contiguous subarray of an Array

Circular Linked List

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

Given a float number convert it into the string WITHOUT using any inbuilt Function

Length of the longest substring without repeating characters

Find two non repeating elements in an array of repeating elements

Serialise Deserialise N-ary Tree

Maximum of all subarrays of size k

SAP Interview Questions

Print Power Set of a Set

Implement LRU Cache

Amazon Interview On-Campus For Internship – 1

Check Binary Tree is Binary Search Tree or not

Minimum insertions to form a palindrome

simple sql injection

Python Array String

BFS (Breath First Search)

Password Predictor

Coin Collection Dynamic Programming

Find Nearest Minimum number in left side in O(n)

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

Stickler thief

Top 10 Interviews Techniqes for Campus Interview in IIT NIT BITS for MTech

Longest Increasing Subsequence

Copyright © 2026 · Genesis Framework · WordPress · Log in