Contact: aviboots(AT)netvision.net.il
39,974 questions
51,918 answers
573 users
#include <stdio.h> #include <string.h> int main() { char s[] = "c c++ java python c#"; if (strstr(s, "java")) { puts("Exists"); } else { puts("Not exists"); } return 0; } /* run: Exists */