Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,011 questions

51,958 answers

573 users

How to convert meters to yards and vice versa in C

1 Answer

0 votes
#include <stdio.h>

#define METER_TO_YARD 1.0936133
#define YARD_TO_METER 0.9144

double meters_to_yards(double meters) {
    return meters * METER_TO_YARD;
}

double yards_to_meters(double yards) {
    return yards * YARD_TO_METER;
}

int main(void) {
    double m = 10.0;
    double y = meters_to_yards(m);
    printf("%.2f meters = %.6f yards\n", m, y);

    double y2 = 10.0;
    double m2 = yards_to_meters(y2);
    printf("%.2f yards = %.6f meters\n", y2, m2);

    return 0;
}



/*
run:

10.00 meters = 10.936133 yards
10.00 yards = 9.144000 meters

*/

 



answered 5 hours ago by avibootz
...