Computer Science, asked by praveengupta804, 5 months ago

write a program in the basics to add three numbers

Answers

Answered by Anonymous
7

Answer:

Addition of three numbers using function in C

#include <stdio.h>

#include <conio.h>

sum(int,int,int);

void main()

int a,b,c,d;

printf("\nACCEPT VALUE FOR a,b,c:\n");

scanf("%d %d %d",&a,&b,&c);

d=sum(a,b,c);

Explanation:

PLS FOLLOW ME GUYS

Answered by kusumjain2106
1

Answer:

please follow me guys...

Similar questions