/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
int function4(int x, int 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);
printf("function4์ ๋ฐํ๊ฐ : %d\n",result4);
return 0;
}