我正在编写一个简单的 c 程序,它反转一个字符串,从 argv[1] 中获取字符串。这是代码:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char* flip_string(char *string){
int i = strlen(string);
int j = 0;
// Doesn't really matter all I wanted was the same size string for temp.
char* temp = string;
puts("This is the original string");
puts(string);
puts("This is the \"temp\" string");
puts(temp);
for(i; i>=0; i--){
temp[j] = string[i]
if (j <= strlen(string)) {
j++;
}
}
return(temp);
}
int main(int argc, char *argv[]){
puts(flip_string(argv[1]));
printf("This is the end of the program\n");
}
基本上就是这样,程序编译和一切,但最后不返回临时字符串(只是空格)。一开始,当它等于字符串时,它会很好地打印温度。此外,如果我在for循环中逐个字符地执行temp的printf,则打印中的正确临时字符串即字符串->反转。就在我尝试将其打印到标准输出时(在 for 循环之后/或在 main 中)没有任何反应,只打印空白。
谢谢