摘要: 代码:如下 1 #include <malloc.h> 2 #include <stdio.h> 3 4 void getMemory(int len, char* p) 5 { 6 p = (char*)malloc(len); 7 } 8 int main() 9 { 10 char src[] 阅读全文
posted @ 2023-10-22 18:21 潘阳399 阅读(40) 评论(0) 推荐(0)