strset函数

函数原型:extern char *strset(char *str, char character)

参数说明:str为源字符串,即将要被操作的字符串,character为一个字符。
        
所在库名:#include <string.h>
  
函数功能:将字符串str中所有的字符都设置成为指定的字符character。
  
返回说明:返回所有字符都设置为character后的字符串的指针。

其它说明:暂时无。

实例:

#include <string.h>
#include 
<stdio.h>

int main()
{
    
char str[100]="I'm sky2098,welcome to my website!";
    
char *strtemp;

    strtemp
=strset(str,'k');   //将字符串str中所有
字符替换为字符k
    printf(
"The string strtemp is:   %s  ",strtemp);

    
return 0;
}

在VC++ 6.0  编译运行:

posted @ 2012-11-02 09:14  N3verL4nd  阅读(181)  评论(0编辑  收藏  举报