고한종

#include <stdio.h>

void swap(int *a, int *b)
{
	int temp;
	temp = *a;
	*a = *b;
	*b = temp;
}

int main()
{
	int a=3 , b=5;
	printf("%d,%d\n",a,b);
	printf("%d,%d\n",&a,&b);
	swap(&a,&b);
	printf("%d,%d\n",a,b);
	printf("%d,%d\n",&a,&b);

	return 0;
}

댓글


뭔가 설명을 달어
Retrieved from http://wiki.zeropage.org/wiki.php/고한종/swap()
last modified 2021-02-07 05:28:43