Question: 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 #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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!