摘要: ```#include #include int main(){ int *p,t; p = (int *)malloc(40*sizeof(int)); if (!p){ printf("内存已用完!j"); exit(0); } for ... 阅读全文
posted @ 2015-07-02 19:33 樱风凛 阅读(159) 评论(0) 推荐(0) 编辑
摘要: ```#include int main(){ int a,b,c=1,d=1; a = c++; b = ++d; printf("%d\t%d\n", a,b); return 0;}//++i是先加再使用,而i++是先使用再加//输出结果 1 2``` 阅读全文
posted @ 2015-07-02 19:00 樱风凛 阅读(215) 评论(0) 推荐(0) 编辑