errors.hlp (Topic list)
Error Message
                                                  Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler warning (level 3) C4323
 
     potential divide by 0
 
     The second operand in a divide operation evaluated to zero at
     compile time, giving undefined results.
 
     The 0 operand may have been generated by the compiler, as in the
     following example:
 
          func1() { int i,j,k; i /= j && k; }
                                    -♦-