Previous: 2.2.6.7. Pointer Types To the Table of Contents Next: 2.2.6.9. Array Types
2.2.6.7. Pointer Types Table of Contents 2.2.6.9. Array Types

- 2.2.6.8. -
Table of Contents
2. TMT Pascal Language Description
2.2. Pascal Language Structure
2.2.6. Types
2.2.6.8. Pointer Dereference


2.2.6.8. Pointer Dereference


Dereferencing is used to refer to the object which a pointer type points to.
Use Variable^ to dereference a pointer type.

It is important to note that pointer types must point to a specific memory location before they are dereferenced. Otherwise, the data pointed to is undefined.


Previous: 2.2.6.7. Pointer Types To the Table of Contents Next: 2.2.6.9. Array Types
2.2.6.7. Pointer Types Table of Contents 2.2.6.9. Array Types

- 2.2.6.8. -