博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 12 13 14 15 16

2011年1月7日

摘要: 这里是代码,这是通过Insert Code for Windows Live Writer.msi这个插件发布的: 好了,不知道这次怎么样?希望没有什么问题下面的代码是通过Code Snippet plugin for Windows Live Writer这个插件发布的:下面的代码和上面的一样,只不过不使用容器,使用代码行:下面使用“代码插入插件”cf.SyntaxHighighter测试一下:[代码]下面使用Paste from Visual Studio来试一试: 阅读全文

posted @ 2011-01-07 12:55 天地玄黄 阅读(211) 评论(0) 推荐(0) 编辑

2011年1月6日

摘要: #include #define LEN 5 int a[LEN] = { 10, 5, 2, 4, 7 }; void insertion_sort(void) { int i, j, key; for (j = 1; j = 0 && a[i] > key) { a[i+1] = a[i]; i--; } a[i+1] = key; } printf("%d,... 阅读全文

posted @ 2011-01-06 22:13 天地玄黄 阅读(212) 评论(0) 推荐(0) 编辑

摘要: 我的代码:const int i = 0;const int *p = &i;int main(){ *(int *)0 = 0; *(int *)p = 0; return 0;}颜色查询地址:http://www.color-hex.com/color/fbedbb 阅读全文

posted @ 2011-01-06 21:25 天地玄黄 阅读(186) 评论(0) 推荐(0) 编辑

上一页 1 ··· 12 13 14 15 16