Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

bartleby

Concept explainers

Question
100%

#include <iostream>
using namespace std;

/* Define your function here */

int main() {
/* Type your code here. Your code must call the function. */

return 0;
}

## 5.18 LAB: Count characters - functions

### Objective:
Write a program that receives an input consisting of a character and a string, and outputs the number of times the character appears in the string.

### Example:
If the input is:
```
n Monday
```
the output is:
```
1
```

### Example:
If the input is:
```
z Today is Monday
```
the output is:
```
0
```

### Example:
If the input is:
```
n It's a sunny day
```
the output is:
```
2
```

Note: Case matters. The character 'n' is different from the character 'N'.

### Example:
If the input is:
```
n Nobody
```
the output is:
```
0
```

### Instruction:
Your program must define and call the following function that returns the number of times the input character appears in the input string.
```cpp
int CountCharacters(char userChar, string userString)
```
expand button
Transcribed Image Text:## 5.18 LAB: Count characters - functions ### Objective: Write a program that receives an input consisting of a character and a string, and outputs the number of times the character appears in the string. ### Example: If the input is: ``` n Monday ``` the output is: ``` 1 ``` ### Example: If the input is: ``` z Today is Monday ``` the output is: ``` 0 ``` ### Example: If the input is: ``` n It's a sunny day ``` the output is: ``` 2 ``` Note: Case matters. The character 'n' is different from the character 'N'. ### Example: If the input is: ``` n Nobody ``` the output is: ``` 0 ``` ### Instruction: Your program must define and call the following function that returns the number of times the input character appears in the input string. ```cpp int CountCharacters(char userChar, string userString) ```
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
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.
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education