• 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

Introduction To Number Theory ( Part 1 )

Regular Expression Matching

Find the element that appears once others appears thrice

Test Cases for Round Function

Binary Tree in Java

SAP Hiring Off-Campus General Aptitude

Minimum insertions to form a palindrome

Templates in C++

CodeChef’ RRCOPY

Find Percentage of Words matching in Two Strings

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

DFS (Depth First Search)

Given Set of words or A String find whether chain is possible from these words or not

Find Nearest Minimum number in left side in O(n)

Convert Decimal to Roman numbers / Romanizer HackerEarth Code

Reversal of LinkedList

SAP Off Campus Hiring_ March 2015 Sample Questions

Python Array String

Number of Islands BFS/DFS

System Design: Designing a LLD for Hotel Booking

Printing each word reverse in string

Count Possible Decodings of a given Digit Sequence

Binary Tree Isomorphic to each other

Flipkart Set 1 On Campus with Answers

SAP Off Campus Hiring_ March 2015 Computer Skills

robot standing at first cell of an M*N matrix. It can move only in two directions, right and down. In how many ways, it can reach to the last cell i.e. (M, N) Code it

Memory Efficient LinkedList

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

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

Flipkart SDET Interview Experience

Copyright © 2025 · Genesis Framework · WordPress · Log in