Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 512 Bytes

compiler-error-c2124.md

File metadata and controls

23 lines (19 loc) · 512 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2124
Compiler Error C2124
11/04/2016
C2124
C2124
93392aaa-5582-4d68-8cc5-bd9c62a0ae7e

Compiler Error C2124

divide or mod by zero

A constant expression has a zero denominator. To resolve the error, do not divide by zero.

The following sample generates C2124:

// C2124.cpp
int main() {
  int i = 1 / 0;   // C2124  do not divide by zero
  int i2 = 12 / 2;   // OK
}