摘要: WIN32 表示Windows平台 *只要包含了 Windows.h,那么 WIN32 常量是肯定定义了的。 _WIN32 表示32位Windows _WIN64 表示64位Windows 上面说法错了 参考微软的说法 Predefined Macros https://msdn.microsoft 阅读全文
posted @ 2015-03-28 19:58 StuJnX6ry 阅读(666) 评论(0) 推荐(0) 编辑
摘要: Berkeley DB Programmer's Reference Guidehttp://docs.oracle.com/cd/E17076_02/html/programmer_reference/index.htmlOracle Berkeley DB Downloadshttp://www... 阅读全文
posted @ 2015-03-28 11:51 StuJnX6ry 阅读(141) 评论(0) 推荐(0) 编辑
摘要: K&R C style:#include int add(x, y)int x, y;{ return x + y;}int main(){ int a = 2; int b = 3; int c = add(a, b); printf("%d\n", c); r... 阅读全文
posted @ 2015-03-28 11:46 StuJnX6ry 阅读(464) 评论(0) 推荐(0) 编辑