int *p1,*p2; 与 int *p1,p2
swap(int *p1,int *p2) {int temp; temp=*p1; *p1=*p2; *p2=temp
看下面:void Swap(int *p1,int *p2) { int *p; p = p1; p1 = p2; p2
int *p1,*p2; p1=(int *)malloc(10); p2=p1+2; printf("p1=0x%x,
#include void swap(int b[]) { int *p,*p1,*p2; p1=&b[0] ;p2=&
int*p,*p1,*p2,*p=*p1,*p1=*p2,*p2=*p3哪里有错.另外p=p1,p1=p2,p2=p3呢
main() { int x=10; int *p1=&x,*p2; p2=p1; printf("%d\n",*p2)
int *p1=malloc(4); int *p2=malloc(4); printf("p2-p1=%d\n",p2
int a,b,*p1*p2; 请问 p1=&a和*p1=a有什么区别?
下面一段代码:int a=1,b=2,t; int *p1,*p2; p1=&a;p2=&b; t=*p1;*p1=*p
谁给讲解下其中的问题,函数如下swap(int *p1,int *p2) {int *p; p=p1; p1=p2; p
#include#includevoid fun (char *w,int n){char s,*p1,*p2;p1=w
int same_different() { if(strcmp(p1.x,p2.x) && strcmp(p1.y,p