char * strstr(const char * str,const char * substr); ... char const* substr) { char* pos = strstr(str, substr); if(pos) { printf("found ...
確定! 回上一頁