const char *到const char **

时间:2013-10-30 06:02:45

标签: c++ pointers char type-conversion

有没有一种简单的方法可以在C ++中将const char*转换为const char**(不使用Boost)?我尝试使用&myConstCharP,但这不起作用。

1 个答案:

答案 0 :(得分:5)

我在这里看不到问题。以下代码适用于我:

int main(int argc, char **argv)
{
    char c = 'a';
    const char *myConstCharP = &c;
    const char **p = &myConstCharP;

    printf("Your original char is: %c",**p);
}