标签:style blog http color io for 2014 div sp
指针的兼容性
#include <stdio.h>
void func(int *a)
{
a += 3;
*a = 100;
}
int main()
{
int a[10] = {1,2,3,4,5,6,7,8,9,0};
int i;
func(&a);
//这里传递 &a 结果虽然正确 不过传a才是正解 vs2013 和 linux 都报警告,不过都能正确执行for (i = 0; i < 10;i++)
printf("%d\n",a[i]);
return 0;
}
标签:style blog http color io for 2014 div sp
原文地址:http://www.cnblogs.com/l6241425/p/3955044.html