1.寫一結構,並取得結構欄位值。
2.題目已提供程式碼片段,執行結果如參考畫面,程式碼有語法、邏輯或其他項目上的錯誤,請全數修正。
#include <stdio.h>
#include <stdlib.h>
int main () {
enum classify
{
Freshman, Sophomore, Junior, Senior
};
struct student {
char *name;
enum classify id;
};
struct student st1;
st1.name="Peter";
st1.id=”Junior”;
printf("%s是大三的學生\n", st1.id);
return 0;
}
程式必須自建 enum 與 struct ,並以變數方式指定數值。
輸出時,需以變數內容輸出,不可直接輸出文字。
Peter是大三的學生
編號 | 身分 | 題目 | 主題 | 人氣 | 發表日期 |
沒有發現任何「解題報告」 |