摘要: 一、函数指针 先看一个例子: #include<stdio.h> #include<stdlib.h> #include<string.h> #define ERROR 0 #define OK 1 int add(int a,int b){ return a+b; } int multiply(i 阅读全文
posted @ 2021-11-20 22:47 师大无雨 阅读(805) 评论(0) 推荐(1)