• 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

Sort an array according to the order defined by another array

Reversal of LinkedList

Amazon Interview Experience – SDE Chennai

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

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

System Design: Designing a LLD for Hotel Booking

Memory Efficient LinkedList

Find position of the only set bit

Convert Decimal to Roman numbers / Romanizer HackerEarth Code

Difference between a LinkedList and a Binary Search Tree BST

1014 Practice Question of New GRE – Princeton

Check a String is SUBSEQUENCE of another String Find Minimum length for that ( DNA Matching )

Skiing on Mountains Matrix

Generate largest number arranging a no. of given non negative integer numbers

SAP Off Campus Hiring_ March 2015 Sample Questions

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

BlueStone E-commerce Interview Experience

SAP Hiring Off-Campus General Aptitude

Maximum sum contiguous subarray of an Array

Advanced SQL Injection

Fibonacci Hashing & Fastest Hashtable

BFS (Breath First Search)

Python Dictionaries

Maximum of all subarrays of size k

Hackerearth : Counting Subarrays

Practo Hiring Experience

Spanning Tree

Circular Linked List

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

LeetCode: Binary Tree Maximum Path Sum

Copyright © 2026 · Genesis Framework · WordPress · Log in