由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - C++ Q80: What is the output of the following code?
相关主题
C: what is the output?请教C/C++小
C++ Q22: ostreamC++的一个bug,求解
C++ Q60 calling virtual function in constructor (JPMorgan)请教一个写程序的问题
弱问一个c++编程题1 11 21 1211 sequence的代码
【为什么我写的reverse string总出错】一道google电面题,估计挂了。。。
这个C++程序的运行结果是什么一个N个数的int数组如何找到3个majority的数?
C++ Q96: function inheritancec++ class definition
问个C++模板定义的问题为什么我在array里用IsOdd 总出错?
相关话题的讨论汇总
话题: what话题: c++话题: q80话题: output话题: following
进入JobHunting版参与讨论
1 (共1页)
c**********e
发帖数: 2007
1
What is the output of the following code? And why?
#include
#include
using namespace std;
int main() {
vector v;
for(int i=0;i<100;i++) v.push_back(i);
cout << v.capacity() << endl;
return 0;
}
x******7
发帖数: 49
2
no exact answer, but it has to be larger than v.size(), 100.
c**********e
发帖数: 2007
3
Why did I get 103? The number 103 really confused me.
1 (共1页)
进入JobHunting版参与讨论
相关主题
为什么我在array里用IsOdd 总出错?【为什么我写的reverse string总出错】
【c++里override输出<<总出错】这个C++程序的运行结果是什么
C++ online Test 一题C++ Q96: function inheritance
问个C/C++概念的问题问个C++模板定义的问题
C: what is the output?请教C/C++小
C++ Q22: ostreamC++的一个bug,求解
C++ Q60 calling virtual function in constructor (JPMorgan)请教一个写程序的问题
弱问一个c++编程题1 11 21 1211 sequence的代码
相关话题的讨论汇总
话题: what话题: c++话题: q80话题: output话题: following