这是我的代码的主旨......
#define RAM_LOC 0x500000
...
...
volatile int my_func(void)
{
<something in here>
}
...
...
main()
{
if(&my_func >= RAM_LOC && &my_func <= RAM_LOC + 10) <-- Warning here
...
...
}
我收到有关比较的警告,内容如下: “警告:不同指针类型的比较缺少一个演员”
我的问题是为什么这是非法的。
由于