Write a C++ program having concept of Pointers, and user define function in a single program.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #include<iostream> using namespace std; int add(int* x, int* y) { return *x + *y; } int main() { int A, B, sum; cout << "Please enter the First Number : "<<endl; cin >> A; cout << "Please enter the Second Number : "<<endl; cin >> B; sum = add(&A, &B); cout << "Sum of Two Numbers " << A <<" and " << B << " = " << sum; return 0; } |
Output
Please enter the First Number :
7
Please enter the Second Number :
3
Sum of Two Numbers 7 and 3 = 10