Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishak798 committed Mar 29, 2024
1 parent 41592c0 commit 594f188
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Functions/passbyValue.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// pass by value --- Function
#include <bits/stdc++.h>
using namespace std;

void multiplyByTen(int number)
{
number *= 10;
cout << "After Multiplication : " << number << endl;
}
int main()
{
int num = 5;
cout << "Actual number: " << num << endl;
multiplyByTen(num);
cout << "Number after pass by value function worked: " << num;
return 0;
}
/**
* @brief
* Actual number: 5
After Multiplication : 50
Number after pass by value function worked: 5
*
*/

0 comments on commit 594f188

Please sign in to comment.