Mega Code Archive

 
Categories / C / Code Snippets
 

Memory set

#include <stdio.h> #include <string.h> int main(void) { char *p; p = memchr("I Love Clementine", ' ', 16); printf(p); return 0; }