新手嘛不要那么指责人家,刚开始学这里不懂很正常的,我刚开始也在这里迷惑了很久。
对于你的问题,你分别运行下两个程序就明白了。
#include<stdio.h>
void main()
{
int p=2,head=3;
p=head;
printf("p=%d\n",p);
}
#include<stdio.h>
void main()
{
int p=2,head=3;
head=p;
printf("head=%d",head);
}
对于你的问题,你分别运行下两个程序就明白了。
#include<stdio.h>
void main()
{
int p=2,head=3;
p=head;
printf("p=%d\n",p);
}
#include<stdio.h>
void main()
{
int p=2,head=3;
head=p;
printf("head=%d",head);
}