Answers for "c++ compare substrings"

C++
-2

comparing strings in cpp

// CPP program to illustrate substr()
#include <string.h>
#include <iostream>
using namespace std;
 
int main()
{
    // Take any string
    string s1 = "Geeks";
 
    // Copy three characters of s1 (starting
    // from position 1)
    string r = s1.substr(1, 3);
 
    // prints the result
    cout << "String is: " << r;
 
    return 0;
}
Posted by: Guest on March-17-2022

Browse Popular Code Answers by Language