Hello ,
The following program works in BP but prints blank in GPC. Can you tell us why.
program sts; type mytype = (a,b,c,d); myrec =record st:string; end; var arr : array[mytype] of myrec; begin arr[d].st :='anu'; writeln(arr[d].st); end.
Thanks and Regards, Anuradha