Week 3: Monday -------------- Q1. (50) Write a program using the function getchar() that inputs a date in the format dd-mm-yyyy and prints it out in the format Day dd of Month mm of Year yyyy using putchar(). You are not allowed to use scanf or printf. You can use ascii code information to convert characters to integers. Example: If input is 23-08-2010 output should be Day 23 of Month 08 of Year 2010. Q2. (50) Input 10 numbers and output the minimum number greater than the average. Example: Input 1 2 3 4 5 6 7 8 9 10 will have output 6.