blob: cbd0aa5a51884a4ce3c00865f043df4faf47c12c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
// Name: msglm
// Date:
// Program Name:
// Description:
#include <iostream>
#include <string>
#include <iomanip>
using namespace std;
//func decl
void ValueFunctionEx(int x);
void ReferenceFunctionEx(int& x);
// Named constants
int main() {
//Variable declaration
int num1;
int num2;
//Program title and description for the user
cout << "Title: Value vs Reference Parameter" << endl << "Description: Value parameter Example" << endl;
cout << "Enter an integer" << endl;
cin >> num1;
ValueFunctionEx(num1);
cout << "Main num1: " << num1 << endl;
cout << "Enter an integer" << endl;
cin >> num2;
ReferenceFunctionEx(num2);
cout << "Main num1: " << num2 << endl;
return 0;
}
void ValueFunctionEx(int x) {
x = x * 2;
cout << "Value Parameter x: " << x << endl;
}
void ReferenceFunctionEx(int& x) {
x = x * 2;
cout << "Value Parameter x: " << x << endl;
}
/*This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
|