摘要:
```#include #include int main(){ int *p,t; p = (int *)malloc(40*sizeof(int)); if (!p){ printf("内存已用完!j"); exit(0); } for ... 阅读全文
摘要:
```#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``` 阅读全文