关于指针的问题
#include <stdio.h>int main()
{
int a={9,8,7,6,5,4,3,2,1,0};
int *p;
for(p=a;P < (a+10);p++)
{
printf("pointer= %d\n",*p);
}
return 0;
}
一直出现这个,不知道错在哪里。。。小甲鱼老师也是这样的。。。。请各位帮帮忙。
--------------------Configuration: 指针的数组输出 - Win32 Debug--------------------
Compiling...
指针的数组输出.cpp
D:\C语言程序源码\鱼C学习\指针的数组输出\指针的数组输出.cpp(29) : error C2065: 'P' : undeclared identifier
D:\C语言程序源码\鱼C学习\指针的数组输出\指针的数组输出.cpp(29) : error C2446: '<' : no conversion from 'int *' to 'int'
This conversion requires a reinterpret_cast, a C-style cast or function-style cast
D:\C语言程序源码\鱼C学习\指针的数组输出\指针的数组输出.cpp(29) : error C2040: '<' : 'int' differs in levels of indirection from 'int *'
执行 cl.exe 时出错.
指针的数组输出.exe - 1 error(s), 0 warning(s)
你定义的是"小写p",比较的时候用"大写P"
也就是这一句错了: for(p=a;P < (a+10);p++) 这个东西一找就找出来了啊!也没有多难啊!:lol: 此处略缺三万 发表于 2013-12-15 17:54 static/image/common/back.gif
你定义的是"小写p",比较的时候用"大写P"
也就是这一句错了: for(p=a;P < (a+10);p++)
对的哈。。。。我这细心度啊 太马虎了,一直没有发现呢这个。。。。谢谢哈,朋友 感谢楼主无私奉献!
页:
[1]