• 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

Daughter’s Age VeryGood Puzzle

Apriori algorithm C Code Data Mining

Introduction To Number Theory ( Part 1 )

25 horses 5 tracks Find 3 fastest puzzle

1014 Practice Question of New GRE – Princeton

C Program for TAIL command of UNIX

FizzBuzz Solution C C++

flattens 2 D linked list to a single sorted link list

Trapping Rain Water

Maximum of all subarrays of size k

Right view of Binary tree

Number of Islands BFS/DFS

Interfaces in C++ (Abstract Classes in C++)

Possible sizes of bus to carry n groups of friends

Skiing on Mountains Matrix

Find if two rectangles overlap

TicTacToe Game As Asked in Flipkart

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

Wrong Directions given find minimum moves so that he can reach to the destination

Find if a binary tree is height balanced ?

Diagonal Traversal of Binary Tree

CodeChef’ RRCOPY

Walmart Labs Interview Experience

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

Mirror of Tree

Sort an array according to the order defined by another array

Flipkart Set 1 On Campus with Answers

Coin Collection Dynamic Programming

SAP Off Campus Hiring_ March 2015 Sample Questions

Sort Stack in place

Copyright © 2025 · Genesis Framework · WordPress · Log in