// example7_6.c
#include <stdio.h>
int function4(int x, int y) // x, y λ§€κ°λ³μ, int λ°ν
{
printf("λ κ°μ λ§€κ°λ³μ: %d, %d\n", x, y);
printf("λ°νκ° μμ: %d\n", x + y);
return x + y;
}
int main(void)
{
int a = 10, b = 6;
int result4 = function4(a, b); // λ°νκ°μ result4μ μ μ₯
printf("function4μ λ°νκ°: %d\n", result4);
return 0;
}