• 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

Doubly linked list

Edit Distance ( Dynamic Programming )

The greedy coins game Dynamic Programming

Find position of the only set bit

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

Flipkart Set 1 On Campus with Answers

Common Ancestor in a Binary Tree or Binary Search Tree

System Design: Designing a LLD for Hotel Booking

Printing each word reverse in string

Circular Linked List

Find the kth number with prime factors 3, 5 and 7

Flipkart SDET Interview Experience

CodeChef Code SGARDEN

Find two non repeating elements in an array of repeating elements

Best Java Book | Top Java Programming Book for Beginners

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

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 ?

SAP Interview Questions

CodeChef’ RRCOPY

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

Add Sub Multiply very large number stored as string

VMWare SDEII Interview

Puzzle : 100 doors in a row Visit and Toggle the door. What state the door will be after nth pass ?

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

SAP Off Campus Hiring_ March 2015 Analytical Aptitude

LeetCode : Word Search

Find if two rectangles overlap

Client Server C program

Memory Efficient LinkedList

Test Cases for Round Function

Copyright © 2026 · Genesis Framework · WordPress · Log in