• 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

C++ OOPs Part2

Facebook Interview Question : Interleave List

CodeChef’ RRCOPY

Best Java Book | Top Java Programming Book for Beginners

Apriori algorithm C Code Data Mining

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

Trie Dictionary

Linked List V/S Binary Search Tree

Find position of the only set bit

‘N’ Story Building, with 1,2,3 steps how many ways can a person reach top of building.

Stickler thief

Edit Distance ( Dynamic Programming )

Find loop in Singly linked list

How strtok() Works

Code Chef PRGIFT Solution

SAP Off Campus Hiring_ March 2015 Computer Skills

Naurki.com Security Breach

Find if two rectangles overlap

Level order traversal in Spiral form

Python Array String

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

Printing Longest Common Subsequence

The Magic HackerEarth Nirvana solutions Hiring Challenge

Introduction To Number Theory ( Part 1 )

LeetCode: Binary Tree Maximum Path Sum

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

simple sql injection

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

Find next greater number with same set of digits

DFS (Depth First Search)

Copyright © 2026 · Genesis Framework · WordPress · Log in