Files
CWithClasses/C/BasicSyntax/Pointer/pointer_test1.cpp
2025-12-31 00:39:23 +08:00

20 lines
256 B
C++

#include <stdio.h>
void swap(int * a, int * b){
int temp;
temp = * a;
* a = * b;
* b = temp;
}
int main()
{
int a,b;
scanf("%d%d",&a,&b);
int *t1,*t2;
t1=&a;
t2=&b;
swap(t1,t2);
printf("%d %d\n",t1,t2);
printf("%d %d\n",*t1,*t2);
return 0;
}