const char **

foo (const char **p){    }
 
main (int argh,char **argv)
{
     foo(argv);
}
warning : argument is incompatible with prototype(参数与原型不匹配)
赋值合法条件:两个操作数都是指向有限定词或无限定词的相容类型的指针,左边指针所指向的类型必须具有右边指针所指类型的全部限定词
原文地址:https://www.cnblogs.com/sqxw/p/4877895.html