• 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

Implement a generic binary search algorithm for Integer Double String etc

Find Percentage of Words matching in Two Strings

Client Server C program

C++ OOPs Part1

Check Binary Tree is Binary Search Tree or not

Edit Distance ( Dynamic Programming )

Calculate price of parking from parking start end time prices

N Petrol bunks or City arranged in circle. You have Fuel and distance between petrol bunks. Is it possible to find starting point so that we can travel all Petrol Bunks

Maximum occurred Smallest integer in n ranges

Reliance Jio Software Developer Interview Experience

Right view of Binary tree

DFS (Depth First Search)

Adobe Interview Questions 8 month Exp

LeetCode: Binary Tree Maximum Path Sum

Stock Buy Sell to Maximize Profit

Subset Sum Problem Dynamic programming

The greedy coins game Dynamic Programming

Find the number ABCD such that when multipled by 4 gives DCBA.

Word Break Problem

LeetCode : Word Search

VMWare SDEII Interview

Introduction To Number Theory ( Part 1 )

Daughter’s Age VeryGood Puzzle

Count Possible Decodings of a given Digit Sequence

Minimum insertions to form a palindrome

Printing Longest Common Subsequence

Coin Collection Dynamic Programming

Max Sum in circularly situated Values

SAP Interview Questions

Password Predictor

Copyright © 2026 · Genesis Framework · WordPress · Log in