只需一步,快速开始
#include <stdlib.h> #include <stdio.h> void a(); void b(char *c); main() { a(); } void a() { char * c; b(c); printf("%s",c); } void b(char* c) { c=(char*)malloc(sizeof(char)*4); *c='a'; *(c+1)='B'; *(c+2)='\0'; }
使用道具 举报
本版积分规则 发表回复 回帖并转播 回帖后跳转到最后一页
GMT+8, 2024-11-16 01:43 , Processed in 0.064333 second(s), 16 queries .
© 2021 Powered by Discuz! X3.5.