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