Sum of two numbers using function in C++


Example Program:

This program defines a function named sum which takes two integer arguments and returns their sum. In the main function, the sum function is called with arguments 2 and 8 and the result is printed to the console using cout. When executed, the program should output 10.

Source Code

#include<iostream>
using namespace std;
int sum(int num1, int num2)
{
    int num3 = num1+num2;
    return num3;
}
int main()
{
    cout<<sum(2,8);
    return 0;
}
To download raw file Click Here

Output

10

Program List


Flow Control

IF Statement Examples


Switch Case


Goto Statement


Break and Continue


While Loop


Do While Loop


For Loop


Friend Function in C++


String Examples


Array Examples


Structure Examples


Structure & Pointer Examples


Structure & Functions Examples


Enumeration Examples


Template Examples


Functions


Inheritance Examples

Hierarchical Inheritance


Hybrid Inheritance


Multilevel Inheritance


Multiple Inheritance


Single Level Inheritance


Class and Objects

Constructor Example


Destructor Example


Operator Overloading Example


Operator and Function Example


List of Programs


Pointer Examples


Memory Management Examples


Pointers and Arrays


Virtual Function Examples