Computer Science, asked by ss3741837, 11 months ago

write a program to add three integer number

Answers

Answered by kumaranmolpandey1235
1

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

 \huge {\mathcal{\purple{g}\green{o}\pink{o}\blue{g}\purple{l}\green{e}\pink{d}}}

Similar questions