Is there any way in C++ to check whether a string starts with a certain string (smaller than the original) ? Just like we can do in Java
bigString.startswi
strstr() returns a pointer to the first occurrence of a string within a string.