How to work with Type
To work with Type
Recognizing Delphi programming structure – Type:
var
IDf:file of Integer;
Namef: file of string[50];
Type
Temploy=record
ID:Integer;
Name:string[50];
Salary:Real;
end;
var
rec:Temploy;
NameList:file of Temploy;
No comments:
Post a Comment