a C++ program that calculates the number of times a
given substring is found in an input string. Please, check carefully the list standard C-string functions, and decide which of them can be utilized to solve the task.
Example: consider a string “tank capacity was measured many times” to search in and a
substring “an” specified by a user – under these circumstances program outputs 2. If the input substring
contains just one character “a”, the result becomes 6.
Hypothetical dialogue may have the form given below:
Input string for search: tank capacity was measured many times
Input substring to search for: an
String “an” found 2 times
Wish to continue search (y/n)?: y
Input substring to search for: a
String “an” found 6 times
Wish to continue search (y/n)?: y
sonturk 0 Newbie Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.