1.#include <stdio.h>
void reverse(char* s){ if( (s != NULL) && (*s != '\0') ) { reverse(s + 1); printf(" %c", *s); }}int main(){ reverse("12345"); printf("\n"); return 0;}2.
本文共 228 字,大约阅读时间需要 1 分钟。
1.#include <stdio.h>
void reverse(char* s){ if( (s != NULL) && (*s != '\0') ) { reverse(s + 1); printf(" %c", *s); }}int main(){ reverse("12345"); printf("\n"); return 0;}2.
转载于:https://www.cnblogs.com/wxb20/p/6142422.html