1998-12-08から1日間の記事一覧

構造体の動的配列 (malloc)

明解C言語 入門編 > 12. 構造体 > 構造体の動的配列 (malloc) Delphi program Project1;{$APPTYPE CONSOLE}uses SysUtils;const NINSU = 5;type TStudent = record name: String; height: Integer; weight: Real; end;type TCompare = function (x:TStudent…