用Dev-C++将Hello Word倒序变为droW olleH且首行为#include stdioh 不出现for
#include <stdio.h>
void reverse_print(char *str);
int main() { printf("#include <stdio.h>\n"); reverse_print("Hello World"); return 0; }
void reverse_print(char *str) { if (*str) { reverse_print(str + 1); putchar(*str); } }
原文地址: https://www.cveoy.top/t/topic/hg47 著作权归作者所有。请勿转载和采集!