例子1
# include<stdio.h>
void main()
{
char **p1;
const char **p2=p1;
}
//[Warning] initialization from incompatible pointer type [enabled by default]
例子2
# include<stdio.h>
void main()
{
char *p1;
const char *p2=p1;
}
//编译通过,且无Warning
我在网上查资料都说 例子1 是因为:p1指向 char *类型,p2指向const char *类型
所以,两者类型冲突,导致编译器报 Warning
但是对于 例子2:p1指向 char 类型,p2指向const char 类型,两者类型也不同,
为什么就不报 Warning呢?????