# 撸码 今天研究算法时需要用到一个很大的数组,代码如下: #include <stdio.h>#include <stdlib.h>#include <stdint.h> int main(int argc, char *argv[]) { uint16_t list[100000000] = {0}; printf("OK\n"); return EXIT_SUCCESS; } 数组大小为 2字节 * 100,000,000 ≈ 200M字节 # 运行报错 运行 liyongjun@Box:~/project/my/c/study$……
阅读全文