A person writes a project with unit conversion functions, although she doesn’t use all of them....

50.1K

Verified Solution

Question

Programming

A person writes a project with unit conversion functions,although she doesn’t use all of them. The conversions would beuseful in a library. Create the library and modify the main.c touse the library. What is the name of your library?

#include // has printf()

float inches2metres(float length_in_inches);

float metres2inches(float length_in_metres);

float pounds2kg(float weight_in_pounds);

float kg2pounds(float mass_in_kg);

float hours2seconds(float time_in_hours);

float seconds2hours(float time_in_seconds);

int main(void){

int i;

float speed_mperhour, speed_inchespersec;

printf(“speed (km/hr)       speed (in/sec) \n\r”);

for (i=1; i<=100;i++)

{

      speed_inchespersec =metres2inches(i*1000.0)/hours2seconds(1.0);

     printf(“%f          %f\n\r”, i, speed_inchespersec);

}

return 0;

float inches2metres(float length_in_inches){

return (length_in_inches * 0.0254); // answer in metres

float metres2inches(float length_in_metres){

return (length_in_metres * 39.3701); // answer in inches

float pounds2kg(float weight_in_pounds){

return (weight_in_pounds * 0.453592); // answer in kilograms

float kg2pounds(float mass_in_kg){

return (mass_in_kg * 2.20462) // answer in pounds

float hours2seconds(float time_in_hours){

return (time_in_hours * 3600.0) // answer is seconds

float seconds2hours(float time_in_seconds){

return (time_in_seconds / 3600.0) // answer is hours

Answer & Explanation Solved by verified expert
3.7 Ratings (437 Votes)
To create a library we first need to 1 create a header file which contains function prototypes 2 create a source file which contains the implementation of all these functions 3 Create library object file which can then be used in other programs Below we first create header file mylibh then    See Answer
Get Answers to Unlimited Questions

Join us to gain access to millions of questions and expert answers. Enjoy exclusive benefits tailored just for you!

Membership Benefits:
  • Unlimited Question Access with detailed Answers
  • Zin AI - 3 Million Words
  • 10 Dall-E 3 Images
  • 20 Plot Generations
  • Conversation with Dialogue Memory
  • No Ads, Ever!
  • Access to Our Best AI Platform: Flex AI - Your personal assistant for all your inquiries!
Become a Member

Other questions asked by students