Question: Can someone help me write this program in C++ but with a beginner coding version, because we arent that ahead in class. It does want
Today we will solve the palindrome problem and practice using C character array strings. Write a program to determine if a string input is a palindrome. Important declare your string to be an array of characters so it is a C string not a C++ string. that is declare it with this declaration: char my_data[50]; NOT WITH the declaration: string my_data; Important: You need to use C string functions not string functions You need to treat it like an array of characters not a C++ string. You need to #include-string.h> not #include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
