Question 1) Write a program to reverse a string.
Question 2) Write a program to check a string for palindrome.
Question 3) Write a program to copy a string into another string.
Question 4) Write a program to concatenate two strings.
Question 5) Write a program to compare two strings.
Question 6) Write a program to replace every space in a string with a hyphen, tab with a hash and digit with a slash.
Question 7) Write a program to input a string and replace every lower case letter with upper case letter, upper case letter with a lower case letter, digit with a ‘#’ and a special symbol with a ‘%’.Display the new string.
Question 8) Write a program to encrypt and decrypt a string using your own method of encryption anddecryption.
Question 9) Write a program to reverse all the strings stored in the array.
Question 10) Write a program to swap two strings stored in the array.
Question 11) Write a program to input 5 strings in an array of strings and display all the strings with their lengths.
Question 12) Write a program to search a string in the array of strings.
Question 13) Write a program to display all the palindrome strings from the array of strings.
Question 14) Write a program to convert a string into upper case and vice versa.
Question 15) Write a program to extract given number of characters from the left of the string.