2014年12月17日
摘要: #define _CRT_SECURE_NO_WARNINGS#include #include #include void main() { int a[3][5][3]; int num = 0; for (int * b = &a[0][0][0]; b < (&a[0][... 阅读全文
posted @ 2014-12-17 19:58 c3tc3tc3t 阅读(471) 评论(0) 推荐(0) 编辑
摘要: int a[3][4][5]; for (int i = 0; i < 3 * 4 * 5; i++) { a[i / 20][(i / 5) % 4][i % 5] = i; printf("%-2d,%-2d,%-6d", i / 20, (i / 5)... 阅读全文
posted @ 2014-12-17 16:35 c3tc3tc3t 阅读(326) 评论(0) 推荐(0) 编辑