// This is test program for strpbrk function from string.h #include #include int main() { char s[] = "Hello, World!"; puts(strpbrk(s, "W")); return 0; }