Help for this page

Select Code to Download


  1. or download this
    signed char c = 123;
    int         i = 123;
    ...
    printf("%d\n", c);   // ok, even though %d expects int.
    printf("%f\n", d);   // ok
    printf("%f\n", f);   // ok, even though %f expects double.