• 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

Subset Sum Problem Dynamic programming

SAP Hiring Off-Campus General Aptitude

Introduction To Number Theory ( Part 1 )

LeetCode : Word Search

Find the smallest window in a string containing all characters of another string

Sort an array according to the order defined by another array

Trapping Rain Water

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

Hackerearth : Counting Subarrays

Implement LRU Cache

SAP Off Campus Hiring_ March 2015 Sample Questions

Python String and numbers

Printing intermediate Integers between one element & next element of array

Difference between a LinkedList and a Binary Search Tree BST

K’th Largest Element in BST when modification to BST is not allowed

Find if a binary tree is height balanced ?

Check Binary Tree is Binary Search Tree or not

LeetCode: Container With Most Water

Templates in C++

Level order traversal in Spiral form

Print all nodes that are at distance k from a leaf node

Maximum path sum between two leaves

LeetCode: Binary Tree Maximum Path Sum

Check if an array has duplicate numbers in O(n) time and O(1) space

Binary Tree Isomorphic to each other

Apriori algorithm C Code Data Mining

Stickler thief

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

Daughter’s Age VeryGood Puzzle

SAP Interview Questions

Copyright © 2025 · Genesis Framework · WordPress · Log in