Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
宣言時に構造体に割り当てられるメモリの量を見つける必要があるため、構造体のメモリ モデルを作成する必要があります。
struct student { int Roll_no,age; float average; float grade; };
私があなたを誤解していない限り、組み込みのsizeof演算子/関数はあなたが望むことをします:
sizeof
size_t size_of_student_in_bytes = sizeof(student);