構造体 C言語 構造体のポインタとは? struct 今回は、構造体のポインタを使ってみましょう。#include <stdio.h>#include <string.h>/* 構造体hitoを定義 */struct hito { int age; /* 年齢 */ char bloo... 2020.08.04 構造体
構造体 C言語 struct 構造体とは? 今回は、構造体について説明していきます。早速、構造体を使ってプログラムを作っていきましょう。まさし君とひろみちゃんのプロフィールを表示するプログラムを作る事にします。#include <stdio.h>#include <string.h>... 2020.08.04 構造体