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

構造体の動的配列 (realloc)

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