K 10 svn:author V 8 schweikh K 8 svn:date V 27 2002-08-27T20:11:08.000000Z K 7 svn:log V 317 Print a '-' sign for negative zero. Tested with #include int main(void) { printf("%+f\n", -0.0); printf("%+f\n", +0.0); printf("%+f\n", 0.0); return 0; } to output -0.000000 +0.000000 +0.000000 PR: bin/41823 Submitted by: GOTO Kentaro Liked by: bde MFC after: 3 weeks END