Article ID: 120968
Article Last Modified on 7/5/2005
/* Compile options needed: /W4
*/
float big;
float big2;
int junk1;
/* Use this pragma instead of the one below to disable all
warnings */
/* #pragma
warning(disable:4756;disable:4706;disable:4699;disable:4244)
*/
void main(void)
{
int i;
/* This pragma will disable only the warnings < 4699 because
of its placement within the function body */
#pragma
warning(disable:4756;disable:4706;disable:4699;disable:4244)
big = +1.0e+99;
big2 = +1.1e+99;
junk1 = i;
if( i=0 )
i=0;
}
Additional query words: 8.00 8.00c 9.00 10.00 10.10 10.20
Keywords: kbbug kbcode kbcompiler KB120968