C Tutorial/string.h/memset

Материал из C\C++ эксперт
Версия от 10:32, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

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);
}