我想使用本地指针指向全局字符串。指针是本地指针,字符串是全局的。当我运行此代码时,将本地指针传递给函数“myfun”,指针没有改变,即它的指向地址没有改变。打印的值为“NULL”。
有人能告诉我为什么这在 gcc 上不起作用吗?
#include <stdio.h>
char *str[] = { "String #1", "Another string" };
void myfun( void * p, int i )
{
p = ( void * ) &str[ i ][ 0 ];
}
int main( void )
{
void * ptr1, * ptr2;
myfun( ptr1, 0 );
myfun( ptr2, 1 );
printf( "%s\n%s\n", ptr1, ptr2 );
}