What to Remember About Data Type Compatibility?
October 27, 2020 | Education
| • A variable of an integer type cannot be assigned a real value;
• for these real types the operations “+”, “-“, “*”, “/” are defined;
• for these integer types, the operations “+”, “-”, “*”, “div”, “mod” are defined.
Integer types can also be converted to real types, but not vice versa.
