用Dev-C++将Hello Word倒序变为droW olleH且首行为#include stdioh
#include <stdio.h>
int main() {
char str[] = "Hello World";
int len = strlen(str);
for (int i = len - 1; i >= 0; i--) {
printf("%c", str[i]);
}
return 0;
}
原文地址: https://www.cveoy.top/t/topic/hg41 著作权归作者所有。请勿转载和采集!