#include <stdio.h>
int Sum(int value1, int value2);
void main()
{
int s;
s = Sum(3, 4);
};
int Sum(int value1, int value2)
{
int result = value1 + value2;
return result;
printf("결과는 %d", result);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: