• 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

simple sql injection

C Program for TAIL command of UNIX

Minimum insertions to form a palindrome

Sort an array according to the order defined by another array

Leetcode: Merge Intervals

Right view of Binary tree

Convert Decimal to Roman numbers / Romanizer HackerEarth Code

Find if two rectangles overlap

Maximum sum contiguous subarray of an Array

Difference between a LinkedList and a Binary Search Tree BST

Cisco Hiring Event 21st – 22nd Feb 2015

Flipkart SDET Interview Experience

The greedy coins game Dynamic Programming

SAP Off Campus Hiring_ March 2015 Sample Questions

FizzBuzz Solution C C++

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

Print Power Set of a Set

Python Dictionaries

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

Number of Islands BFS/DFS

Flipkart Set 1 On Campus with Answers

BlueStone E-commerce Interview Experience

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

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

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

Maximum difference between two elements s.t larger element appears after the smaller number

Python List

Adobe Interview Questions 8 month Exp

flattens 2 D linked list to a single sorted link list

Singly linked list

Copyright © 2026 · Genesis Framework · WordPress · Log in