將參數字符串中的字符反向排列(遞歸實現)

編寫一個函數 reverse_string(char * string)(遞歸實現) 實現:將參數字符串中的字符反向排列。 要求:不能使用C函數庫中的字符串操作函數。 #include<stdio.h> #include<windows.h> void reverse_string(char *p) { int len = strlen(p); char tmp = *p; *p = *(p
相關文章
相關標籤/搜索