Question: in C 1 0 . 7 LAB: Parsing dates Complete main ( ) to read dates from input, one date per line. Each date's format
in C LAB: Parsing dates
Complete main to read dates from input, one date per line. Each date's format must be as follows: March Any date not following that format is incorrect and should be ignored. Use the substring function to parse the string and extract the date. The input ends with on a line alone. Output each correct date as:
Ex: If the input is:
March
April
December
then the output is:
Use the provided GetMonthAsInt function to convert a month string to an integer. If the month string is valid, an integer in the range to inclusive is returned, otherwise is returned. Ex: GetMonthAsIntFebruary returns and GetMonthAsInt returns
Output is nearly correct, but whitespace differs. See highlights below.
Special character legend
Input
March
April
December
Your output
Expected output
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
