1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
 
void swap(int *px, int *py)
{
    int tmp;
    tmp = *px;
    *px = *py;
    *py = tmp;
}
 
int main(void)
{
    int a = 1, b = 2;
    printf("swapÀ» È£ÃâÇϱâ Àü: a=%d, b=%d\n", a, b);
    swap(&a, &b);
    printf("swapÀ» È£ÃâÇÑ ´ÙÀ½: a=%d, b=%d\n", a, b);
    return 0;
}
cs