I searched and found out that Packed Record in Delphi uses less space. But why to use Record? Are there any things that a Record can do and Packed Record cannot?
TCourse = Packed Record
CId: String;
CName: String;
CDuration: string;
end;