1998-04-03から1日間の記事一覧

構造体の受け渡し

C

明解C言語 入門編 > 12. 構造体 > 構造体の受け渡し C #include <stdio.h> #include <string.h>struct gstudent { char name[20]; int height; float weight; };void hiroko(struct gstudent* std) { (*std).height = 180; (*std).weight = 80; }int main(int argc, char* argv</string.h></stdio.h>…