C语言函数传值的相关问题 Z.TIAN 2015年11月29日 大约716字 阅读需6分钟 (本文年代久远,请谨慎阅读)现有如下程序段: 1234567891011void getmem(char **p,int n){ *p=(char *)malloc(n);}int main(void) { // your code goes here char *str; getmem(&str,100); strcpy(str,"hello"); printf("%s",str);free(str); return 0;} 阅读全文