For this assignment, create a C program that performs the following:
1. Define two functions named printFirstName and printLastName. These functions should do nothing more than use printf to display your first and last name respectively (with no new line characters).
2. From your main function, make calls to these 2 functions in combination with calls to printf statements to display an invitation to a party. For example, the text in red is displayed by calling printFirstName and the text in green is the result of calling printLastName, and the rest of the text is the result of using a printf() statement directly within the main function: "John Smith wishes to invite you to a party at the Smith residence. Please RSVP to John at your earliest convenience. Thank you! - John Smith"
3. Finally, your program should display your name, where you are from, and something about yourself that you don't mind sharing. Each of these should be on a separate line, for example:
Name: John Smith
From: Haverhill, Massachusetts
About me: I love to ride motorcycles.