Function parameters : Function Parameters « Function « C++






Function parameters

Function parameters

#include <iostream>
#include <string>
using namespace std;
void printMessage(string, int);  

int main ()
{
   string name;
   int age; 
   cout << "Enter name: ";
   cin >> name;
   cout << "Enter age: ";
   cin >> age;
   printMessage(name, age); 
   return 0;
}
void printMessage (string theName, int theAge)
{
   cout << "Your name is " << theName 
      << " and your age is " << theAge << endl;
}

           
       








Related examples in the same category

1.Function: reference version and pointer versionFunction: reference version and pointer version
2.Passing Arguments by ValuePassing Arguments by Value
3.Function uses two argumentsFunction uses two arguments
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.