摘要: int main(int argc, char const *argv[]) { //C风格 int *p = (int*)malloc(sizeof(int)); if(p==NULL){ return -1; } *p = 20; //初始化 free(p); int *q = (int*)ma 阅读全文
posted @ 2022-08-27 09:24 言叶以上 阅读(21) 评论(0) 推荐(0) 编辑