• 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

Reverse a Linked List in groups of given size

Find two non repeating elements in an array of repeating elements

Daughter’s Age VeryGood Puzzle

Microsoft BING Interview Experience

Maximum path sum between two leaves

C++ OOPs Part1

Amazon Interview On-Campus For Internship – 1

Python List

Best Java Book | Top Java Programming Book for Beginners

Walmart Labs Interview Experience

Circular Linked List

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

C++ OOPs Part2

N teams are participating. each team plays twice with all other teams. Some of them will go to the semi final. Find Minimum and Maximum number of matches that a team has to win to qualify for finals ?

flattens 2 D linked list to a single sorted link list

How strtok() Works

C Program for TAIL command of UNIX

Printing intermediate Integers between one element & next element of array

Find the element that appears once others appears thrice

Adobe Interview Questions 8 month Exp

Reversal of LinkedList

Binary Tree in Java

Regular Expression Matching

Generate next palindrome number

Find loop in Singly linked list

Hackerearth : Counting Subarrays

Binary Tree in Java

Search element in a matrix with all rows and columns in sorted order

SAP Interview Questions

LeetCode : Word Search

Copyright © 2026 · Genesis Framework · WordPress · Log in