Here is a sample of an input/output
Enter your floating number: 4517.891 The rightmost digit of the integral part is: 7 The second rightmost digit of the integral part is: 1Note: Use the following input formats to test your program. xx.ff, xxx.fff, xxxx.ffff, xxxxx.fffff, where x and f are any digit.
F = 32 + (C × 180.0 / 100.0)
Here is a sample of an input/output
Enter Temperature in Celsius: 37.0 Temperature in Fahrenheit is: 98.6
Here is a sample of input/output
Enter next input: 65 The ascii of 'A' is 65 Enter next input: 56 The ascii of '8' is 56 ... Run your program with the following data: 65, 90, 97, 122, 48, 57, 7, 38, 60, 10, 13, 9, 11, 32, 27.