Difference between r1.2 and the current
@@ -1,3 +1,5 @@
[고한종]
#include <stdio.h>
#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; }
댓글 ¶
뭔가 설명을 달어