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

構造体の受け渡し

明解C言語 入門編 > 12. 構造体 > 構造体の受け渡し Delphi program Project1;{$APPTYPE CONSOLE}uses SysUtils;type TStudent = record name: String; height: Integer; weight: Real; end;procedure hiroko(var std:TStudent); begin std.height := 180; …