#include <stdio.h>
void main(){
int i;
int *p;
printf("please input the number:\n");
scanf("%d",&i);
p=&i;
printf("the result1 is:%d\n",p);
p++;
printf("the result2 is :%d\n",p);
}
#include <stdio.h>
void main(){
int i;
int *p;
printf("please input the number:\n");
scanf("%d",&i);
p=&i;
printf("the result1 is:%d\n",p);
p++;
printf("the result2 is :%d\n",p);
}
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。