Learn
introduction()
Instructions
1.
Write a function introduction()
with no return value that has:
std::string
parameter namedfirst_name
.std::string
parameter namedlast_name
.
The function should print the last_name
, followed by a comma, a space, first_name
another space, and finally last_name
again.
For example, introduction("James", "Bond");
should print the following:
Bond, James Bond
Take this course for free
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.