Q:

C program to find SUM and AVERAGE of two integer Numbers using User Define Functions

0

C program to find SUM and AVERAGE of two integer Numbers using User Define Functions

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

/*  
C program to find SUM and AVERAGE of two integer 
Numbers using User Define Functions.
*/

#include <stdio.h>

/*function declarations*/
int sumTwoNum(int, int); /*to get sum*/
float averageTwoNum(int, int); /*to get average*/

int main()
{
    int number1, number2;
    int sum;
    float avg;

    printf("Enter the first integer number: ");
    scanf("%d", &number1);

    printf("Enter the second integer number: ");
    scanf("%d", &number2);

    /*function calling*/
    sum = sumTwoNum(number1, number2);
    avg = averageTwoNum(number1, number2);

    printf("Number1: %d, Number2: %d\n", number1, number2);
    printf("Sum: %d, Average: %f\n", sum, avg);

    return 0;
}

/*function definitions*/
/*
 * Function     : sumTwoNum
 * Arguments    : int,int - to pass two integer values
 * return type  : int - to return sum of values
*/
int sumTwoNum(int x, int y)
{
    /*x and y are the formal parameters*/
    int sum;
    sum = x + y;
    return sum;
}

/*
 * Function     : averageTwoNum
 * Arguments    : int,int - to pass two integer values
 * return type  : float - to return average of values
*/
float averageTwoNum(int x, int y)
{
    /*x and y are the formal parameters*/
    float average;
    return ((float)(x) + (float)(y)) / 2;
}

Output:

    Enter the first integer number: 100
    Enter the second integer number: 201
    Number1: 100, Number2: 201
    Sum: 301, Average: 150.500000

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C program to print Table of an Integer Number usin... >>