Due: Saturday August 26 by 11:59pm Points: each problem is 1 point, all or nothing for each ** Checkpoint ** - Must be complete at least 2 of the problems by Wednesday August 30 when class starts to pass the class. Everything should be done within your cs202xy account. 1. In your ~/HW/ directory, create a C file lab02_password.c that uses while, printf, and scanf to ask the user for a password and continue asking for a password until "fourty-two" is typed (case-sensitive, without quotes). 2. In your ~/HW/ directory, create a C file lab02_countR.c that uses recursion and printf to print the integers from 1 to 20, one per line (no loops allowed). 3. In your ~/HW/ directory, create a C file lab02_countG.c that uses goto and printf to print the integers from 1 to 20, one per line (no loop or recursion allowed). 4. In your ~/HW/ directory, create a C file lab02_miles.c that asks the user for a distance in miles and then prints the distance in parsecs, light years, light minutes, light seconds, leagues, km, m, yd, in, cm. Use doubles for your calculations, and use the conversion factors that google gives (type in: convert 1 mile to km, convert 1 mile to parsecs, etc.). ** Note: make your programs exactly match the output of those in the lab02 directory.