Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将如何指向:
char * values [x];
我试图char *从代码块外部将一个数组传递给一个指针,其中 x 可以通过任何方式。
char *
指向指针的指针可以做你想做的事。
char ** val ;
在函数定义中:
return_type func(char ** val) {...}
在函数调用中:
func(&values)
您需要将指针的地址传递给函数。