Programming Languages, C, Python, c++, c#, java, javascript, html, css, Go
#include <stdio.h>
#include <conio.h>
int sum (int a, int b)
{
return a + b;
}
int main()
int a, b, c;
a = 34;
b = 342;
c = sum(a, b);
printf ("The sum of this is %d \n", c);
return 0;
Comments
Post a Comment