• 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

flattens 2 D linked list to a single sorted link list

SAP Hiring Off-Campus General Aptitude

Trapping Rain Water

Diagonal Traversal of Binary Tree

Daughter’s Age VeryGood Puzzle

Count Possible Decodings of a given Digit Sequence

BFS (Breath First Search)

Regular Expression Matching

Given a float number convert it into the string WITHOUT using any inbuilt Function

C Program for TAIL command of UNIX

Naurki.com Security Breach

Closed Parentheses checker

DFS (Depth First Search)

Leetcode: Edit Distance

Python Dictionaries

Number of Islands BFS/DFS

Python List

Practo Hiring Experience

BlueStone E-commerce Interview Experience

Inorder and Preorder traversals of a Binary Tree given. Output the Postorder traversal of it.

Printing each word reverse in string

Binary Tree Isomorphic to each other

25 horses 5 tracks Find 3 fastest puzzle

Singly linked list

Fibonacci Hashing & Fastest Hashtable

Find the element that appears once others appears thrice

Sort Stack in place

CodeChef Code SGARDEN

Count number of ways to reach a given score in a game

SAP Off Campus Hiring_ March 2015 Computer Skills

Copyright © 2026 · Genesis Framework · WordPress · Log in