PART A
Write a C program that takes the names and surnames of thestudents and then displays the initial and last name of the name onthe screen. For instance, if Onur Uslu is entered as input, theoutput of our program must be O. Uslu.
PART B
Write a C program that asks the user to enter a string and thensends it to a function that does the following job and shows theresponse from the function on the screen. The function must returnall words in the string from the program by converting the initialletters into their large form.
Example Output
Type of a string:Hello world
New sentence:Hello
OR
OR