Converts a shoe size to inches - C Data Type

C examples for Data Type:double

Description

Converts a shoe size to inches

Demo Code

#include <stdio.h>

#define ADJUST 7.31              // one kind of symbolic constant

int main(void){
    const double SCALE = 0.333;  // another kind of symbolic constant
    double shoe, foot;
    /*from   w ww .j a  v a  2 s.  c o m*/
    shoe = 9.0;
    foot = SCALE * shoe + ADJUST;
    printf("Shoe size (men's)    foot length\n");
    printf("%10.1f %15.2f inches\n", shoe, foot);
    
    return 0;
}

Result


Related Tutorials