/******************************************************************************
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>
void function2(int x, int y){
printf("๋งค๊ฐ๋ณ์๊ฐ ์๊ณ ๋ฐํ๊ฐ์ด ์๋ ํจ์\n");
printf("๋ ๊ฐ์ ๋งค๊ฐ ๋ณ์ : %d, %d\n",x, y);
printf("๋ฐํ๊ฐ ์์ : void\n");
}
int main(){
int a = 5, b = 7; // int b = 7๋ก ์ฐ๋ฉด ์ค๋ฅ
function2(a,b);
return 0;
}