Mega Code Archive

 
Categories / C / Code Snippets
 

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("I Love Clementine", ' ', 17); printf(p); return 0; }