• 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

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

Trapping Rain Water

Binary Tree in Java

Facebook Interview Question : Interleave List

Minimum insertions to form a palindrome

Naurki.com Security Breach

Cisco Hiring Event 21st – 22nd Feb 2015

Circular Linked List

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

Print vertical sum of all the axis in the given binary tree

Urban Ladder Written Test.

Code Chef PRGIFT Solution

flattens 2 D linked list to a single sorted link list

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

CodeChef Code SGARDEN

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

The greedy coins game Dynamic Programming

Find shortest distances between every pair of vertices ( Dynamic Programming Floyd Warshall Algorithm)

Coin Collection Dynamic Programming

Apriori algorithm C Code Data Mining

Given Set of words or A String find whether chain is possible from these words or not

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 ?

Reverse a Linked List in groups of given size

Find next greater number with same set of digits

Find min element in Sorted Rotated Array (Without Duplicates)

Microsoft BING Interview Experience

SAP Off Campus Hiring_ March 2015 Computer Skills

ADOBE Aptitude C Language Test

Maximum of all subarrays of size k

Find if a binary tree is height balanced ?

Copyright © 2026 · Genesis Framework · WordPress · Log in