摘要: 1. look the menu key, default is F8,2. open and login3. rightclick, then select fullscreen3. if the size is small, adjust the resolution via system->preferences->display4. press F8 to go back 阅读全文
posted @ 2012-02-16 14:57 alxe_yu 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 1. struct defination struct _name { int a; char*b; ... } 一般之后还要typedef it to let its use be convenient, for example: typedef struct _name name; or directly write: typedef strunct _name { int a; char*b; ... }name;2. initialization name x={3,"char",...};3. initialize an array of struct: name 阅读全文
posted @ 2012-02-16 14:14 alxe_yu 阅读(558) 评论(0) 推荐(0) 编辑