Unit escrita en Pascal con algunas operaciones sobre arrays
{ ----------------------------------------------------------------} { AUTOR: D'ACHARY Vladimiro Gaston } { fecha: 30/12/2013 } { Unidad PASCAL operaciones basicas sobre arrays unidimensionales } {-----------------------------------------------------------------} unit untArrays; {$mode objfpc}{$H+} interface uses crt; const MAX = 5; type RArr = record cod:integer; nom:string[15]; rel:string[15]; ed :byte; end; TArr = array [1..MAX] of RArr; ...