Define a function OutputVals() that takes one string and one integer parameter and outputs the nth character of the string n times (each followed by a newline), where n is indicated by the second parameter. The function should not return any value. Ex: OutputVals("awesome", 4) outputs o o o o Recall string's at() returns a character at the specified position in the string. Ex: myString.at(3) #include #include using namespace std; /* Your code goes here */ int main() {    string str;    int num;    cin >> str >> num;    OutputVals(str, num);    return 0; }

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 22PE
icon
Related questions
Question

Define a function OutputVals() that takes one string and one integer parameter and outputs the nth character of the string n times (each followed by a newline), where n is indicated by the second parameter. The function should not return any value.

Ex: OutputVals("awesome", 4) outputs

o o o o

Recall string's at() returns a character at the specified position in the string. Ex: myString.at(3)

#include <iostream>
#include <string>
using namespace std;

/* Your code goes here */

int main() {
   string str;
   int num;

   cin >> str >> num;
   OutputVals(str, num);

   return 0;
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Function Arguments
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
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