You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 regels
279 B

  1. int add(int a, int b) {
  2. int c = 10;
  3. return a + b;
  4. }
  5. int main() {
  6. MathFunc f = add; // 将加法函数赋值给函数指针
  7. int result = f(3, 5); // 通过函数指针调用加法函数
  8. printf("3 + 5 = %d\n", result); // 输出:3 + 5 = 8
  9. return 0;
  10. }