• 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

Singly linked list

Hackerearth : Counting Subarrays

Find min element in Sorted Rotated Array (Without Duplicates)

Leetcode: Merge Intervals

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

Implement a generic binary search algorithm for Integer Double String etc

Find Pythagorean Triplets in an array in O(N)

1014 Practice Question of New GRE – Princeton

Find shortest distances between every pair of vertices ( Dynamic Programming Floyd Warshall Algorithm)

Introduction To Number Theory ( Part 1 )

Sequence Finder Dynamic Programming

Find next greater number with same set of digits

Microsoft BING Interview Experience

Find if a binary tree is height balanced ?

Practo Hiring Experience

Maximum of all subarrays of size k

LeetCode: Binary Tree Maximum Path Sum

Stock Buy Sell to Maximize Profit

Print all nodes that are at distance k from a leaf node

CodeChef Code SGARDEN

BlueStone E-commerce Interview Experience

Add Sub Multiply very large number stored as string

Code Chef PRGIFT Solution

Circular Linked List

Printing each word reverse in string

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

Common Ancestor in a Binary Tree or Binary Search Tree

25 horses 5 tracks Find 3 fastest puzzle

Find position of the only set bit

There are N nuts and N bolts, u have to find all the pairs of nuts and bolts in minimum no. of iteration

Copyright © 2026 · Genesis Framework · WordPress · Log in