标签:return 指针 错误 std int include 出现 turn bsp
#include<stdio.h>
int main()
{
int a=1;
int *b;
b=&a;
return 0;
}
若将b=&a改为*b=a,运行时将会出现错误。下面是几种对指针变量b的赋值:
p=&a;
p=NULL;
p=0;
p=(int *)1732;
标签:return 指针 错误 std int include 出现 turn bsp
原文地址:http://www.cnblogs.com/Club-IT/p/7764292.html