rekordstruktúra
Rekordstruktúra, often translated as record structure or simply record, is a fundamental data structure in computer programming. It is a composite data type that aggregates a fixed number of elements, each of which can be of a different data type. These elements are referred to as fields or members. Unlike arrays, which store elements of the same type, records allow for the storage of heterogeneous data under a single name.
The primary purpose of a record structure is to group related pieces of data logically. For instance,
Records are widely used in various programming paradigms and languages, including Pascal, C, COBOL, and in object-oriented