c_cpp 使用void函数在C中进行递归

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 使用void函数在C中进行递归相关的知识,希望对你有一定的参考价值。

#include <stdio.h>

// using void functions for recursion

void factorial(int* result, int input)
{
  if(!input) return;
  *result *= input;
  factorial(result, input-1);
}


int main(void) {
  int holder = 1;
  factorial(&holder, 10);
  printf("result is %d\n", holder);
  return 0;
}

以上是关于c_cpp 使用void函数在C中进行递归的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 返回void函数

c_cpp CPP - 教程008 - 递归算法和重载函数

c_cpp 在c中使用void指针数组的一些练习

递归 C void 函数和 return 关键字

实现递归 Void 函数(查找二叉搜索树的高度)

讲一下c语言中递归函数的使用方法有哪些?