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

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

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

memchr: searches *buffer for "ch" in the first count characters

    
  
//Declaration:  void *memchr(const void *buffer, int ch, size_t count); 
//Return:       returns a pointer to the first occurrence of ch or a null pointer if not found. 

  #include <stdio.h>
  #include <string.h>
  int main(void)
  {
    char *p;
    p = memchr("this is a test", " ", 14);
    printf(p);
    return 0;
  }