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