Answered step by step
Verified Expert Solution
Question
1 Approved Answer
add user input into my program #include #include using namespace std; void printheader(string name, int number , char letter ); //function prototype int main() {
add user input into my program
#include
using namespace std;
void printheader(string name, int number , "char letter" ); //function prototype
int main() { // call the printheader function here string n1 = "mike "; printHeader("mike", 23 , 'B'); //passing a string to the function printHeader(n1, 23 , 'B'); return 0; } void printheader(string name, int number, char letter ) // name = "Mary" //name = mike number =24 letter = B { //print a message to say hello cout << "hello"<
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started