Tag Archives: string

C++ Recursion – Palindrome

Determining if a string is a Palindrome using recursion Below is an example of how to determine if a word is a palindrome using recursion. A Palindrome is a string that could be read the same way in either direction such as racecar, mom, and even a. This tutorial expects you to understands the following. [...]

Read more
Fundamental Data Type String

Fundamental Data Type String

In this tutorial you shall learn how to use 1. String Data Type You should immediately notice that the declaration and assignment of a string is similar to int and doubles which you learned previously. Declaring and Initializing the String First make sure you have the appropriate headers in the file where you plan to [...]

Read more