Computer Science, asked by sushmashahisushma, 1 month ago

wap to find out sum of any three numbers​

Answers

Answered by XxaaliasharmaxX
2

Answer:

C Program

  • #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