typedef ,enum 用法介紹 1.typedef 定義一個新的資料型態,與define相似但更單純範例1: ... enum{ a=5, b, c }; printf("x=%d\n",a); // a=5 ,b=6, c=7
確定! 回上一頁