#include<stdio.h>
int sum( int x , int y)
{
    int z = x+y;
}
int main()
{
    int a,b,g;
    printf(" Enter the 1st number :");
    scanf("%d", &a);

    printf(" Enter the 2nd number :");
    scanf("%d", &b);

   g= sum(a,b);

    printf(" The result is %d",g);
}

OUTPUT:

Enter the 1st number : 45
Enter the 2nd number :20
The result is 65



For Other Programs Visit The WebSite:-   https://www.techapurba.com/

Follow Me On Social Media :-

For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/