Sto cercando di verificare se una stringa contiene una sottostringa in C come:
char *sent = "this is my sample example";
char *word = "sample";
if (/* sentence contains word */) {
/* .. */
}
Cos'è qualcosa da usare invece che string::find
in C ++?
strchr
.