Function uses two arguments : Function Parameters « Function « C++






Function uses two arguments

Function uses two arguments

#include <iostream>
#include <string>

using namespace std;
void printMessage(string, string);  

int main ()
{
   string name1, name2;
   cout << "Enter first name: ";
   cin >> name1;
   cout << "Enter last name: ";
   cin >> name2;
   printMessage(name1, name2); 
   return 0;
}

void printMessage (string firstName, string lastName)
{
   cout << "Your name is " << firstName << " " << lastName << endl;
}

           
       








Related examples in the same category

1.Function parametersFunction parameters
2.Function: reference version and pointer versionFunction: reference version and pointer version
3.Passing Arguments by ValuePassing Arguments by Value
4.Passing Arguments by ReferencePassing Arguments by Reference
5.Passes the variable to be doubled by referencePasses the variable to be doubled by reference
6.Passed by value and passed by referencePassed by value and passed by reference
7.Pass string (char *) into a functionPass string (char *) into a function
8.Demonstrates the use of return values with reference type.Demonstrates the use of return values with reference type.
9.Expressions with reference type exemplified by string assignments.