Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Manga Guide To Databases

Authors: Mana Takahashi, Shoko Azuma, Co Ltd Trend

1st Edition

1593271905, 978-1593271909

More Books

Students also viewed these Databases questions

Question

How does national culture relate to organizational culture?

Answered: 1 week ago