上一页 1 ··· 90 91 92 93 94 95 96 97 98 ··· 121 下一页
摘要: #include void e(int);int main(void){ int a = 3; e(a); putchar('\n'); return 0;}void e(int n){ if... 阅读全文
posted @ 2012-07-08 19:29 wdliming 阅读(104) 评论(0) 推荐(0)
摘要: #include int *f1(void){ int x = 10; return &x;}int *f2(void){ int *ptr; *ptr = 10; return ptr;}i... 阅读全文
posted @ 2012-07-08 17:01 wdliming 阅读(112) 评论(0) 推荐(0)
摘要: #include int *f1(void){ int x = 10; return &x;}int *f2(void){ int *ptr; *ptr = 10; return ptr;}i... 阅读全文
posted @ 2012-07-08 17:01 wdliming 阅读(101) 评论(0) 推荐(0)
摘要: #include int main(void){ int a[][3] = {1, 2, 3, 4, 5, 6}; int (*ptr)[3] = a; printf("%d %d ", (*ptr)... 阅读全文
posted @ 2012-07-08 16:54 wdliming 阅读(66) 评论(0) 推荐(0)
摘要: #include int main(void){ int a[][3] = {1, 2, 3, 4, 5, 6}; int (*ptr)[3] = a; printf("%d %d ", (*ptr)... 阅读全文
posted @ 2012-07-08 16:54 wdliming 阅读(113) 评论(0) 推荐(0)
摘要: #include void foo(int[][3]);int main(void){ int a[3][3] = { {1, 2, 3}, {4, 5, 6}, {7, 8, 9} }; foo(a);... 阅读全文
posted @ 2012-07-08 16:46 wdliming 阅读(143) 评论(0) 推荐(0)
摘要: #include void foo(int[][3]);int main(void){ int a[3][3] = { {1, 2, 3}, {4, 5, 6}, {7, 8, 9} }; foo(a);... 阅读全文
posted @ 2012-07-08 16:46 wdliming 阅读(107) 评论(0) 推荐(0)
摘要: #include #include #include static jmp_buf buf;int main(void){ volatile int b = 3; if (setjmp(buf) != 0... 阅读全文
posted @ 2012-07-08 16:20 wdliming 阅读(173) 评论(0) 推荐(0)
摘要: #include #include #include static jmp_buf buf;int main(void){ volatile int b = 3; if (setjmp(buf) != 0... 阅读全文
posted @ 2012-07-08 16:20 wdliming 阅读(143) 评论(0) 推荐(0)
摘要: 程序员的博客:http://www.nowamagic.net/librarys/veda/http://coolshell.cn/一个测试C语言的网站:http://stevenkobes.com/ctest.... 阅读全文
posted @ 2012-07-08 15:49 wdliming 阅读(147) 评论(0) 推荐(0)
上一页 1 ··· 90 91 92 93 94 95 96 97 98 ··· 121 下一页