编写一个函数 void fun ( char *s ),函数的功能是把字符串 s 中的所有字符前移一个位置
串中的第一个字符移到最后。例如:s串中原来的字符串为:"Mn.123xyZ",则调用该函数后,s串中的内容为:"n.123xyZM"。注意:部分源程序保存在文件prog9...
串中的第一个字符移到最后。 例如:s 串中原来的字符串为:"Mn.123xyZ",则调用该函数后,s 串中的内容为:"n.123xyZM"。
注意:部分源程序保存在文件 prog9-3.c 中。 请勿改动主函数 main 和其它函数中的任何内容,仅在函数 fun 的花括号中填入你编写的若干语句。
#include <stdio.h>
#define N 81
void fun ( char *s )
{ }
main( )
{ chara[ N ] ;
printf( "Enter a string : " ); gets ( a );
printf( "The original string is : " ); puts( a );
fun( a );
printf( "The string after modified : ");
puts( a );
} 展开
注意:部分源程序保存在文件 prog9-3.c 中。 请勿改动主函数 main 和其它函数中的任何内容,仅在函数 fun 的花括号中填入你编写的若干语句。
#include <stdio.h>
#define N 81
void fun ( char *s )
{ }
main( )
{ chara[ N ] ;
printf( "Enter a string : " ); gets ( a );
printf( "The original string is : " ); puts( a );
fun( a );
printf( "The string after modified : ");
puts( a );
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询