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.
时间: 2024-10-11 05:05:52