• 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

Python List

Max Sum in circularly situated Values

Best Java Book | Top Java Programming Book for Beginners

Find the number ABCD such that when multipled by 4 gives DCBA.

25 horses 5 tracks Find 3 fastest puzzle

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

Printing each word reverse in string

Maximum path sum between two leaves

building with N steps, we can take 1,2,3 steps calculate number of ways to reach at top of building

BlueStone E-commerce Interview Experience

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

Singly linked list

Word Break Problem

FizzBuzz Solution C C++

SAP Off Campus Hiring_ March 2015 Computer Skills

SAP Off Campus Hiring_ March 2015 Analytical Aptitude

Daughter’s Age VeryGood Puzzle

flattens 2 D linked list to a single sorted link list

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

LeetCode: Binary Tree Maximum Path Sum

Find loop in Singly linked list

TicTacToe Game As Asked in Flipkart

Add Sub Multiply very large number stored as string

Linked List V/S Binary Search Tree

C Program for TAIL command of UNIX

Find position of the only set bit

robot standing at first cell of an M*N matrix. It can move only in two directions, right and down. In how many ways, it can reach to the last cell i.e. (M, N) Code it

Find min element in Sorted Rotated Array (Without Duplicates)

Copyright © 2026 · Genesis Framework · WordPress · Log in