Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include <iostream> #include <cstring> using namespace std; int main() { char myStr[] = "The rain in Spain falls mainly on the plains"; char * myPtr = strstr(myStr, "ain"); cout << myPtr; return 0; }
ain in Spain falls mainly on the plains