摘要: #include <stdio.h> #include <malloc.h> struct Hello{ void (*sayHello)(char* name); }; void sayHello(char* name){ printf("hello, %s\n",name); } int mai 阅读全文
posted @ 2020-12-28 12:04 ziwuxian 阅读(1932) 评论(0) 推荐(0) 编辑