07 2015 档案

摘要:#include int testfunc(void){ printf("just test\n"); return 5;}int main(){ int (*ptr)(void); ptr = testfunc; int c = (*ptr)(); printf... 阅读全文
posted @ 2015-07-09 00:45 朋克 阅读(180) 评论(0) 推荐(0)
摘要:windows程序设计示例: 1 #include "windows.h" 2 #pragma comment(lib, "winmm") 3 4 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); 5 6 int WINAPI WinMa... 阅读全文
posted @ 2015-07-08 02:34 朋克 阅读(359) 评论(0) 推荐(0)