void getMemory(char** s) { *s = (char*)malloc(sizeof(char)); printf("s = %p\n", s); printf("*s = %p\n", *s); } int main() { char* ch = NULL;
確定! 回上一頁