cpp find function code example
Example: find function in c++
// find function for strings
// my linkedin : https://www.linkedin.com/in/vaalarivan-prasanna-3a07bb203/
str = "Ilayathapathy";
subStr = "thalapathy";
cout << str.find(subStr, 1); // prints 5 (first occurrence of substring \n
// starting at index 1