Write a C++ program having concept of Pointers and structure 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 22 23 24 25 26 27 | #include<iostream> using namespace std; struct Numbers { int x; int y; }; int add(Numbers* nums) { return nums->x + nums->y; } int main() { Numbers nums; int sum; cout << "Please enter the First Number : " << endl; cin >> nums.x; cout << "Please enter the Second Number : " << endl; cin >> nums.y; sum = add(&nums); cout << "Sum of Two Numbers " << nums.x << " and " << nums.y << " = " << sum; return 0; } |
Output
Please enter the First Number :
5
Please enter the Second Number :
10
Sum of Two Numbers 5 and 10 = 15