Answers for "pascal define a record"

0

pascal define a record

type 
Books = record
   title: packed array [1..50] of char;
   author: packed array [1..50] of char;
   subject: packed array [1..100] of char;
   book_id: integer;
end;
Posted by: Guest on January-14-2021

Browse Popular Code Answers by Language