Monday, December 10, 2007

How to work with record data type

How to work with record data type

To work with record data type

Description:

The components of a record are called fields. Each field has its own field identifier and type

Declaration:

type

student=record

StudentNo:longint;

StudentName:string;

Department:string;

end;

No comments: