Write a program that converts integer Fahrenheit temperatures from 0 to 212 degrees to floating-point Celsius temperatures with 3 digits of precision. Perform the calculation using the formula Celsius=95(Fahrenheit32) The output should be printed in two right-justified columns of 10 characters each, and the Cetsius temperatures should be preceded by a sign for both positive and negative values. Select one: a. Can the Main function be called recursively? Write a simple program that counts and shows the' number of times the recursive main is called till infinity. (Write a short code. Upload your code as a PDF file) do not enter any text here. just upload your PDF answer to this question Write a C program that plays the game of "guess the number" as follows: Your program chooses the number to be guessed by selecting an integer at random in the range 1 to 1000 . Guessing should be made in guessGaase function. The program then types: I have a number between 1 and 1000. Can you guess my number? Please type your first guess. The player then types a first guess. The program responds with one of the following: 1. Excellentl You guessed the number! Would you like to play again (y or n) ? 2. Too Low. Try again. 3. Too high. Try again. The player then types a first guess. The program responds with one of the following: If the player's guess is incorrect, your program should loop until the player finally gets the number right Your program should keep telling the player Too high or Too low to help the player "zero in" on the correct answer. Write a program that simulates the rolling of two dice. The program should use rand twice to roll the first die and second die, respectively. The sum of the two values should then be calculated. [Note: Because each die can show an integer value from 1 to 6 , then the sum of the two values will vary from 2 to 12 , with 7 being the most frequent sum and 2 and 12 the least frequent sums.] Figure below shows the 36 possible combinations of the two dice. Your program should roll the two dice 36,000 times. Use a onedimensional array to tally the numbers of times each possible sum appears. Print the results in a tabular format. Also, determine if the totals are reasonahle; i.e., there are six ways to roll a 7 , so approximately one-sixth of all the rolls should be 7