• 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

The greedy coins game Dynamic Programming

Check Binary Tree is Binary Search Tree or not

Test Cases for Round Function

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

Max Sum in circularly situated Values

simple sql injection

VMWare Openings

CodeChef’ RRCOPY

Closed Parentheses checker

Inorder and Preorder traversals of a Binary Tree given. Output the Postorder traversal of it.

Best Java Book | Top Java Programming Book for Beginners

Right view of Binary tree

Print vertical sum of all the axis in the given binary tree

Skiing on Mountains Matrix

Possible sizes of bus to carry n groups of friends

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

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

Mirror of Tree

Implement a generic binary search algorithm for Integer Double String etc

Convert Decimal to Roman numbers / Romanizer HackerEarth Code

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

Maximum size of square sub matrix with all 1’s in a binary matrix

System Design: Designing a LLD for Hotel Booking

Find if a binary tree is height balanced ?

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

Generic Object Oriented Stack with Template

Get K Max and Delete K Max in stream of incoming integers

Linked List V/S Binary Search Tree

Common Ancestor in a Binary Tree or Binary Search Tree

Spanning Tree

Copyright © 2026 · Genesis Framework · WordPress · Log in