Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Check whether the first two characters and last two characters of a given string are same

C++ Basic Algorithm: Exercise-75 with Solution

Write a C++ program to check whether the first two characters and last two characters of a given string are same.

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;

bool test(string s1) 
        {
           return s1.substr(0, 2) == s1.substr(s1.length() - 2);
        }
        
int main() 
 {
  cout << test("abab") << endl;  
  cout << test("abcdef") << endl; 
  cout << test("xyzsderxy") << endl;  
  return 0;    
}

Sample Output:

1
0
1

Pictorial Presentation:

C++ Basic Algorithm Exercises: Check whether the first two characters and last two characters of a given string are same.

Flowchart:

Flowchart: Check whether the first two characters and last two characters of a given string are same.

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program to check if a given string begins with 'abc' or 'xyz'. If the string begins with 'abc' or 'xyz' return 'abc' or 'xyz' otherwise return the empty string.
Next: Write a C++ program to concat two given strings. If the given strings have different length remove the characters from the longer string.

What is the difficulty level of this exercise?