Question: using c++ Create a c-string buffer that can store 6 characters. a) Request a five letter word from the user. b) Use a loop to

using c++
Create a c-string buffer that can store 6 characters. a) Request a five letter word from the user. b) Use a loop to determine if the word is a Palindrome. A Palindrome is a word that is identical forwards or backwards. Some examples include: level, kayak, madam Output Example Enter a word: kayak kayak is a Palindrome Create a simple character parser. a) Request a text string less than 500 characters from the console. b) Count the number of letters, digits, whitespaces and punctuation c) Output the number of each of the categories Output Example Enter a text string for analysis: November 3rd, is your Birthday!!! The above text string has: 24 letters, 2 uppercase, 22 lowercase 1 digits 4 punctuations 4 spaces Concatenate a c-string then a string. a) Request a first name and store it in a c-string. b) Request a last name and store it in a different c-string. c) Copy each c-string to a separate string variable d) Concatenate the two c-strings with a space and output the full name e) Concatenate the two strings with a space and output the full name. Output Example Enter first name Jack Enter last name Black c-string Jack Black string: Jack Black
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
