C++ Exercises: Check whether the first two characters and last two characters of a given string are same
First Two = Last Two Characters Check
Write a C++ program to check whether the first two characters and the last two characters of a given string are the same.
Sample Solution:
C++ Code :
Sample Output:
1 0 1
Visual Presentation:

Flowchart:

For more Practice: Solve these Related Problems:
- Write a C++ program to check if the first two characters of a string match its last two characters and output a boolean value accordingly.
- Write a C++ program that reads a string and returns true if the starting two letters are identical to the ending two letters, otherwise false.
- Write a C++ program to compare the first and last two characters of an input string and print 1 for a match or 0 otherwise.
- Write a C++ program that examines a string for equal leading and trailing pairs and outputs the result as a boolean value.
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?