Contact: aviboots(AT)netvision.net.il
41,199 questions
53,699 answers
573 users
#include <stdio.h> #include <string.h> int main() { char s[] = "c c++ c# 930 java python"; char *p = strpbrk(s, "0123456789"); printf("%s\n", p); return 0; } /* run: 930 java python */