More actions
imported>rino0601@naver.com No edit summary |
imported>rino0601@naver.com No edit summary |
||
| (One intermediate revision by one other user not shown) | |||
| Line 1: | Line 1: | ||
[[고한종]] | |||
#include <stdio.h> | #include <stdio.h> | ||
| Line 21: | Line 23: | ||
} | } | ||
== 댓글 == | == 댓글 == | ||
뭔가 설명을 달어 | |||
Latest revision as of 07:08, 22 May 2011
#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;
}
댓글
뭔가 설명을 달어