摘要:
写出运行结果:{//test1charstr[]="world";cout<<sizeof(str)<<":";char*p=str;cout<<sizeof(p)<<":";chari=10;cout<<sizeof(i)<<":";void*pp=malloc(10);cout<<sizeof... 阅读全文
摘要:
#include"stdafx.h"#defineSQR(X)X*Xintmain(intargc,char*argv[]){inta=10;intk=2;intm=1;a/=SQR(k+m)/SQR(k+m);printf("%d\n",a);return0;}这道题目的结果是什么啊?defin... 阅读全文
摘要:
在c++中,vector是一个十分有用的容器,下面对这个容器做一下总结。1基本操作(1)头文件#include.(2)创建vector对象,vectorvec;(3)尾部插入数字:vec.push_back(a);(4)使用下标访问元素,cout::iteratorit;for(it=vec.be... 阅读全文