memset
void memset(void str,int c, size_t n)
str —— 指向要填充的代码块
c —— 要填充的值,但是函数在填充内存块时是使用该值的无符号字符形式。
n —— 要被设置为该值的字节数。
#include <stdio.h>
#include <string.h>
int main ()
{
char str[50];
strcpy(str,"This is string.h library function");
puts(str);
memset(str,'$',7);
puts(str);
return(0);
}
This is string.h library function
$$$$$$$ string.h library function