Q1. Dates are commonly printed in several different format .Two of more common formats are
07/21/2013 and July 21, 2013
Write a program that reads a date in the first format and prints it in the second format
Q2. Write a program that read text and print a table indicating the number of one letter word ,two letter words ,three letter words and so on ,appearing in the text .For example ,the phrase
Whether ‘tis nobler in the mind to suffer
Word Length Occurrence
1 0
2 2
3 1
4 2
5 0
6 2
7 1
Q3. Write a Program that receive an integer (less than or equal to nine digit ).prints out the number in words .if the number input is 12342 ,then the output should be Twelve thousand ,Three Hundred Forty Two