C Tutorial/string.h/memset — различия между версиями

Материал из C\C++ эксперт
Перейти к: навигация, поиск
м (1 версия: Импорт контента...)
 
м (1 версия: Импорт контента...)
 
(нет различий)

Текущая версия на 10:32, 25 мая 2010

memset

Item Value Header file string.h Declaration void *memset(void *buf, int ch, size_t count); Function copies ch into the first count characters of *buf. Return returns buf.

The most common use of memset() is to initialize a region of memory to some value.


#include <string.h>
#include <stdio.h>
int main(void){
  char buf[100];
  memset(buf, "\0", 100);
  memset(buf, "X", 10);
  printf(buf);
}