Computer Science, asked by ishamohanty32, 2 months ago

Write a program to enter three numbers and the sum



Answers

Answered by salukumari8709392515
37

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);
Similar questions