Program to find a substring within a string. If found display its starting position

Program to find a substring within a string. If found display its starting position

Program to find a sub string within a string Object: Write a program to find a sub string within a string. If found display its starting position. C++ projects for beginners with source code Code: #include<iostream> #include<conio.h> #include<string> using namespace std; void main() { int find; string sb2,fn1; string s1=”Yes, we went to Gates after …

Program to find a substring within a string. If found display its starting position Read More »