• 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

Implement a generic binary search algorithm for Integer Double String etc

System Design: Designing a LLD for Hotel Booking

Spanning Tree

Flipkart SDET Interview Experience

Longest Increasing Subsequence

Generic Object Oriented Stack with Template

TicTacToe Game As Asked in Flipkart

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

Leetcode: Merge Intervals

Find and print longest consecutive number sequence in a given sequence in O(n)

Count Possible Decodings of a given Digit Sequence

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

Circular Linked List

Binary Tree in Java

K’th Largest Element in BST when modification to BST is not allowed

BlueStone E-commerce Interview Experience

VMWare SDEII Interview

simple sql injection

Maximum sum contiguous subarray of an Array

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

Difference between a LinkedList and a Binary Search Tree BST

Leetcode: Edit Distance

Python Array String

Cisco Hiring Event 21st – 22nd Feb 2015

Check Binary Tree is Binary Search Tree or not

Number of Islands BFS/DFS

How strtok() Works

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

Convert Decimal to Roman numbers / Romanizer HackerEarth Code

Memory Efficient LinkedList

Copyright © 2026 · Genesis Framework · WordPress · Log in