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 *)