#include#include int main() { char *s1 = "are u ok"; char *s2 = "ok"; int *p; p = (int *)strstr(s1,s2); printf("%pt%pt%pn",p,s1,s2); }

#include#include int main() { char *s1 = "are u ok"; char *s2 = "ok"; int *p; p = (int *)strstr(s1,s2); printf("%pt%pt%pn",p,s1,s2); }