Write a program that asks the user to enter a string. Create a pointer called strPtr and print the first character, third character and fifth character from your string using this pointer. Create another pointer called str1Ptr that starts with the ninth character and prints out the next five characters. EXAMPLE Please enter a string: I love CIS Programming. The first character is: I The third character is: l The fifth character is: v Starting with the ninth character: IS Pr