structuurtype
Structuurtype, in computing often translated as structure type, is a composite data type that groups several named fields, possibly of different primitive types, into a single logical unit. It lets a program model real‑world objects such as a point with x and y coordinates or a person with name and age. The concept appears in many languages under different names—struct in C, record in Pascal, and data types in others.
A structuurtype is declared by listing its fields, each with a name and a type. The type
Semantics vary by language: in many languages a structuurtype is a value type (copying the whole set
Structuurtype is used to group related data, simplify interfaces, and improve readability. They are common in
Example (pseudo): define Point { int x; int y; } then Point p = {3, 4}; p.x = 5;