#include<stdio.h>

void fun(char *a){
    if(*a == '\0'){
        return ;
    }
    fun(a+1);
    printf("%c",*a);
}

int main(){
    char s[] = {'a','b','c','d','e'};
    fun(s);
    return 0;
} 

 

相关文章:

  • 2021-07-25
  • 2021-11-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-16
  • 2022-12-23
  • 2021-06-14
相关资源
相似解决方案