I have this part of code. My question is what the variable i: 1..10; is and what am I declaring. Thanks
type
Str25 = String[25];
TBookRec = Record
Title, Author, ISBN : Str25;
Price : Real;
End;
Var
BookRecArray : Array[1..10] of TBookRec;
tempBookRec : TBookRec;
bookRecFile : File of TBookRec;
i : 1..10;