Programming Reference/Librarys
Question & Answer
Q&A is closed
/* * strstr example code * http://code-reference.com/c/string.h/strstr */ #include <stdio.h> #include <string.h> int main ( void ) { char str[] = "42 is the result or ? but what was the question"; char *ptr; // set the Pointer ptr to "or ?" ptr = strstr (str, "or ?"); // replace the text with "yes" strncpy (ptr, "yes", 3); printf("%s\n",str); return 0; }
42 is the result yes? but what was the question