摘要:
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 阅读全文
摘要:
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 阅读全文