1. Write a program that takes a string of someone’s name and prints it out last name first. Your program must use pointers, not array subscripts. You may use the available string manipulation functions if you find an opportunity. Example:
“XXXXX XXXXX”
“XXXXX, XXXXX”
2. Write a program that will take a string of someone’s full name, and break it into separate strings of first name and last name, as well as capitalize the first letter of each. Again, use pointers and string manipulation functions only. Example:
“joseph smith”
“Joseph”
“Smith”
3. Write a program that has the user enter two Strings. Display whether the first String is less than (comes first), equal to, or greater than (comes after) the first.