#include <stdio.h>
#include <string.h>
int main () {
const char haystack[20] = "Jc2182";
const char needle[10] = "c2";
char *ret;
ret = strstr(haystack, needle);
printf("The substring is: %s\n", ret);
return(0);
}