Answer
are visible to others may already have been shared
Answer:
b) Reliability.
Explanation:
When the program gives correct output and fulfills the customer's requirements it is said to be reliable and said to be achieving reliability.
Correctness is when the program only provides correct solution.
Efficiency is when the program does the work in less time.
Usability means that the program is usable or not.
The role of being a father will decrease Colby’s income and decrease the career-driven nature of his lifestyle.
Answer:
#include<stdio.h>
void ConvertFahrenheit(float);
void main()
{
float fahrenheit_temp;
printf("Input the temperature in Fahrenheit: ");
scanf("%f", &fahrenheit_temp);
ConvertFahrenheit(fahrenheit_temp);
}
void ConvertFahrenheit(float fahren) {
float c, k;
c = (fahren - 32)/1.8;
k = (fahren + 459.67)/1.8;
printf("Celsius = %f\n", c);
printf("Kelvin = %f", k);
}
Explanation:
- Inside the main function, take the temperature in Fahrenheit as an input from user and call the ConvertFahrenheit function by passing it the fahrenheit_temp variable as an argument.
- Create the ConvertFahrenheit function for the conversion and convert the fahrenheit value to the Celsius and Kelvin by using their conversion formulas respectively.
- Lastly, display the result in Celsius and Kelvin.