由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - C: what is the output?
相关主题
这个C++程序的运行结果是什么一道google电面题,估计挂了。。。
请教C/C++小一个N个数的int数组如何找到3个majority的数?
C++ Q80: What is the output of the following code?C++ Q22: ostream
amazon的那道题目C++ Q60 calling virtual function in constructor (JPMorgan)
An example of strategy pattern弱问一个c++编程题
请教一个c的概念题c++ class definition
请教一个写程序的问题为什么我在array里用IsOdd 总出错?
1 11 21 1211 sequence的代码【为什么我写的reverse string总出错】
相关话题的讨论汇总
话题: int话题: output话题: what话题: size话题: ptr
进入JobHunting版参与讨论
1 (共1页)
c**********e
发帖数: 2007
1
#include
using namespace std;
const int size = 5;
void print(int *ptr)
{
cout << ptr[0] << endl;
}
void main()
{
int *b = new int(size);
print(b);
}
~
c*****o
发帖数: 178
2
5
o*********r
发帖数: 32
3
int *b = new int(size)
和 int *b = new int[size] 是有区别的吧,
前者被初始化为size的值了。
1 (共1页)
进入JobHunting版参与讨论
相关主题
【为什么我写的reverse string总出错】An example of strategy pattern
【c++里override输出<<总出错】请教一个c的概念题
C++ Q96: function inheritance请教一个写程序的问题
问个C++模板定义的问题1 11 21 1211 sequence的代码
这个C++程序的运行结果是什么一道google电面题,估计挂了。。。
请教C/C++小一个N个数的int数组如何找到3个majority的数?
C++ Q80: What is the output of the following code?C++ Q22: ostream
amazon的那道题目C++ Q60 calling virtual function in constructor (JPMorgan)
相关话题的讨论汇总
话题: int话题: output话题: what话题: size话题: ptr