学习是一种信仰。
发布时间:2014-01-23 08:52:07
1、在C++ 中,reference在很多方面与指针(pointer)具有同样的能力。2、Pointer 和reference的最大不同是:pointer必须使用一个星号操作符“*”来去引用(dereference)而reference不需要任何操作符来去引用。例如:int i = 0; int* pi =&i;//定义pi为i的指针 .........【阅读全文】
发布时间:2014-01-22 16:53:49
1_2:计算书费: #include void main(){ int a, b,c, d, e, f, g, h, i, j; //scanf("%d%d%d%d%d%d%d%d%d%d", &a, &b, &c, &d, &e,&f, &g, &h, &i, &j ); &.........【阅读全文】
发布时间:2014-01-22 16:53:13
上机1_1:温度转换int main(){ int f; float c; scanf("%d", &f ); //c =5/9*(f-32);&.........【阅读全文】
发布时间:2013-12-28 06:11:33
NAMElibcurl-errors - error codes in libcurlDESCRIPTIONThis man page includes most, if not all, available error codes in libcurl. Why they occur and possibly what you can do to fix the problem are also included.CURLcodeAlmost all "easy" interface functions return a CURLcode error code. No matter.........【阅读全文】