1 Star 0 Fork 216

东方甲乙木 / python-learn

forked from mktime / python-learn 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
demo.c 276 Bytes
一键复制 编辑 原始数据 按行查看 历史
mr.github 提交于 2015-04-15 11:50 . add http_proxy
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv){
int _size = 1;
void* ptr = NULL;
while (1)
{
_size = _size << 1;
if (_size > 0X7FFFFFFFFFFFFFFF)
_size = 1;
ptr = malloc(_size);
}
return 0;
}
Python
1
https://gitee.com/softwyy/python-learn.git
git@gitee.com:softwyy/python-learn.git
softwyy
python-learn
python-learn
master

搜索帮助