-1

假设我有一个char * str,但我还不知道它的大小,所以我只能声明它。然后我将它传递给一个函数,这个函数会知道它的大小,所以它会初始化并设置它。我怎样才能做到这一点?

char * str;
func(&str);

void func(char ** str) {
    // initialize str...
}
4

1 回答 1

2
#define SIZE 10  //or some other value  

或者

const int SIZE = 10;   //or some other value  

然后:

void init( char** ptr) // pass a pointer to your char*
{
    *ptr= malloc( SIZE ); //of any size
}

int main()
{
    char *str;
    init( &str ); //address of pointer str
    //...Processing

    free(str);
    return 0;
}
于 2013-10-21T18:56:10.693 回答