/******************************************************************************
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;
}