• 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

Python String and numbers

Binary Tree Isomorphic to each other

Find two non repeating elements in an array of repeating elements

C++ OOPs Part2

Stock Buy Sell to Maximize Profit

Daughter’s Age VeryGood Puzzle

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

Find Pythagorean Triplets in an array in O(N)

SAP Off Campus Hiring_ March 2015 Verbal Skills

Maximum occurred Smallest integer in n ranges

Test Cases for Round Function

Find the smallest window in a string containing all characters of another string

1014 Practice Question of New GRE – Princeton

Flipkart Set 1 On Campus with Answers

Length of the longest substring without repeating characters

Sort an array according to the order defined by another array

Printing each word reverse in string

Knight Tour Problem (Graph – Breadth First Search)

Diagonal Traversal of Binary Tree

Templates in C++

Advanced SQL Injection

Count Possible Decodings of a given Digit Sequence

Check Binary Tree is Binary Search Tree or not

Memory Efficient LinkedList

LeetCode: Binary Tree Maximum Path Sum

Trie Dictionary

Password Predictor

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

Best Java Book | Top Java Programming Book for Beginners

Stickler thief

Copyright © 2026 · Genesis Framework · WordPress · Log in