On Wed, Jan 24, 2001 at 07:16:04PM -0800, Justin Carlson wrote: > int main() > { > printf("%f\n", (float)3.14159); > } Note that above cast is useless; in C all floats are implicitly converted to doubles for passing to a varargs function. Ralf
On Wed, Jan 24, 2001 at 07:16:04PM -0800, Justin Carlson wrote: > int main() > { > printf("%f\n", (float)3.14159); > } Note that above cast is useless; in C all floats are implicitly converted to doubles for passing to a varargs function. Ralf