字符串函数strset

 原型:extern char *strset(char *s, char c);
       
  用法:#include
 
  功能:把字符串s中的所有字符都设置成字符c。
 
  说明:返回指向s的指针。
 
  举例:


      // strset.c
     
      #include
      #include

      main()
      {
        char *s="Golden Global View";
       
        clrscr();
       
        strset(s,'G');
        printf("%s",s);

        getchar();
        return 0;
      }
     
  相关函数: bzero, memset, setmem
(摘自 http://www.ggv.com.cn/forum/clib/string/strstr.html) 

你可能感兴趣的:(Windows编程,VC++,C,C++)