I have an old program that write some pascal record into file :
type
Character = Record
Name : String[50];
Age : integer;
end;
begin
// [..] data contain a Character record
AssignFile(f, data); // example
Write(f, data); // example
CloseFile(f) // example
end.
Is it possible to open this file and read record from another language like C, C++, Go ?
Thank you.