2010-07-04から1日間の記事一覧

構造体と typedef

C

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