Contact: aviboots(AT)netvision.net.il
40,758 questions
53,129 answers
573 users
#include <stdio.h> #include <string.h> int main(void) { char s1[] = "MVC stands for Model View Controller "; char s2[] = "abcsf"; char *p; p = strpbrk(s1, s2); if (p != NULL) printf("%s", p); return 0; } /* run: stands for Model View Controller */