DINT

32-bit signed integer.

Size

32 bits

Range

-2,147,483,648 to 2,147,483,647

Default

0

IEC 61131-3

Section 2.3.1

Support

Supported

Literals

DINT#42
DINT#-100000
DINT#16#FFFF

Example

count := DINT#250;
batch_size := DINT#1000;
total := count * batch_size;  (* total = 250000 *)

See Also

  • INT — 16-bit signed integer

  • LINT — 64-bit signed integer

  • UDINT — 32-bit unsigned integer