求C語言答案.定義一個學生結構體,包含學生姓名,學號,性別,年齡
題目:
求C語言答案.定義一個學生結構體,包含學生姓名,學號,性別,年齡
並將10個學生的信息儲存在一個結構體數組中,並輸出.
解答:
需要存儲什麼信息,能不能把所要存儲的信息清楚的說出來.這樣在定義結構體的時候可以確定.
#include "stdio.h"
int main()
{
\x09struct
\x09{
\x09\x09char name[10];//名字
\x09\x09int num;//學號
\x09\x09char sex[2];//性別
\x09\x09int age;//年齡
\x09}student[10];
\x09//printf("%d",sizeof(wchar_t));
\x09int i;
\x09for(i=0;i
添加新評論