Problem
Write pseudocode, and C program for the following problem: get a date from the input of a user. The date is of the form mm/dd/yyyy. Then output to the display/screen the date in the form yyyymmdd.For example, the user can input 1/30/2017, and youroutput to screen is20170130. Note that in your output, there must be two digits for the month and the day, but the users can input only necessary digits. You also want to have a user friendly interface: provide a prompt before you get input from the user and output some helpful information such as "your date in the new format is 20170130."