In your reading you'll find pseudocode for finding one C-string inside another. Use that code to count the number of times that s2 appears inside the C-string s1.

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter7: Characters, Strings, And The Stringbuilder
Section: Chapter Questions
Problem 12RQ
icon
Related questions
Question

C++ Please Help!

In
your reading you'll find pseudocode for finding one C-string inside another. Use that code to count
the number of times that s2 appears inside the C-string S1.
cstrings.cpp
1
/**
Count the number of times that s2 appears in s1.
@param s1 the string to search through.
@param s2 the substring to search for.
@return the number of times s2 appears in s1.
2
3
4
*/
int countCopies (const char* s1, const char* s2)
{
int count{0};
7
10
11
12
13
return count;
14
}
CodeCheck
Reset
Transcribed Image Text:In your reading you'll find pseudocode for finding one C-string inside another. Use that code to count the number of times that s2 appears inside the C-string S1. cstrings.cpp 1 /** Count the number of times that s2 appears in s1. @param s1 the string to search through. @param s2 the substring to search for. @return the number of times s2 appears in s1. 2 3 4 */ int countCopies (const char* s1, const char* s2) { int count{0}; 7 10 11 12 13 return count; 14 } CodeCheck Reset
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
ADT and Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning