memset函数
原型:extern void *memset(void *buffer, int c, int count)
用法:#include <string.h>
功能:把buffer所指内存区域的前count个字节设置成字符c。
说明:返回指向buffer的指针。
举例:
/*memset.c*/
#include <string.h>
#include <stdio.h>
main ()
{
char s[20]="Golden Global View";
memset(s,'G',6); //将数组s[]中的前6个字符设置为字符‘G’
printf("%s",s);
getchar(); //可删除,主要是为了等待从键盘的输入回车
return 0;
}