#include<stdio.h>
void swap(int x,int y);
int main(void)
{
        int a=10;
        int b=20;
        printf("%d,%d",a,b);
        swap(a,b);
        printf("%d,%d",a,b);
        return 0;
}
void swap(int x,int y)
{
        int temp;
        temp=x;
        x=y;
        y=temp;
    
}
ab를 변환되게 출력하고싶은데 그냥 그대로 
10,20 출력되네요 이유좀 ㅠㅠ