void fun(char * temp){ while(*temp!='\0'){ temp='\0';temp++;};}
编写一个函数reverse_string (char * string) 将参数字符串中的字符串反向排列 不能用字符操作函数 # include <stdio.h> # include <stdlib.h> void reverse_string (char* num) // 形参接受实参传递的数组 { if (* num!='\0') //判断字符串是否结束,'\0'是字符串结束标志 { reverse_string (num+...