Choose Category
#include <stdio.h> #include <string.h> int main(void) { char *p; p = strpbrk("forget code", "abcg"); printf(p); return 0; }