C++ Program to add two numbers using structure and function


In this program, You will learn how to add two numbers using structure and function in C++.


20 = 10 + 10

50 = 30 + 20

Example: How to add two numbers using structure and function in C++.

#include<iostream>
using namespace std;

struct Test {
    int x, y, z;
};

void add(Test t) {
    t.z = t.x + t.y;
    cout << "Sum is:" << t.z;
}

int main() {

    struct Test t;

    cout << "Enter two numbers:";
    cin >> t.x >> t.y;

    add(t);

    return 0;
}

Output:

Enter two numbers:10 20
Sum is:30