• 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

Reliance Jio Software Developer Interview Experience

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

In Given LinkedList Divide LL in N Sub parts and delete first K nodes of each part

Find if a binary tree is height balanced ?

SAP Hiring Off-Campus General Aptitude

Top 10 Interviews Techniqes for Campus Interview in IIT NIT BITS for MTech

Implement a generic binary search algorithm for Integer Double String etc

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

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

Walmart Labs Interview Experience

SAP Off Campus Hiring_ March 2015 Sample Questions

Amazon Interview Experience – SDE Chennai

Find position of the only set bit

Maximum sum contiguous subarray of an Array

Hackerearth : Counting Subarrays

Generate next palindrome number

Trie Dictionary

C++ OOPs Part1

write a c program that given a set a of n numbers and another number x determines whether or not there exist two elements in s whose sum is exactly x

Password Predictor

C Program for TAIL command of UNIX

Common Ancestor in a Binary Tree or Binary Search Tree

Python List

Wrong Directions given find minimum moves so that he can reach to the destination

Find an index i such that Arr [i] = i in array of n distinct integers sorted in ascending order.

Spanning Tree

HackeEarth Flipkart’s Drone

Closed Parentheses checker

Maximum path sum between two leaves

Flipkart SDET Interview Experience

Copyright © 2026 · Genesis Framework · WordPress · Log in