Passing Arguments by Value : Function Parameters « Function « C++






Passing Arguments by Value

Passing Arguments by Value
#include <iostream>
#include <string>
using namespace std;
void printMessage(string);  

int main ()
{
   string str;
   cout << "Enter a string: ";
   cin >> str;
   printMessage(str); 
   return 0;
}

void printMessage (string s)
{
   cout << "You inputted " << s;
}

           
       








Related examples in the same category

1.Function parametersFunction parameters
2.Function: reference version and pointer versionFunction: reference version and pointer version
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.