摘要: #include int testfunc(void){ printf("just test\n"); return 5;}int main(){ int (*ptr)(void); ptr = testfunc; int c = (*ptr)(); printf... 阅读全文
posted @ 2015-07-09 00:45 朋克 阅读(170) 评论(0) 推荐(0) 编辑