由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Interview questions, Bloomberg
相关主题
c++ 程序一问srand()的问题
写了一个find kth number in 2 sorted arrays的code 请大牛看C/C++里数组作函数的参数的话应该怎么写?
C++面试问题,如何从一个Class 访问另一class的private member请教一个c的概念题
amazon的那道题目请教一个OOP的C++问题
问个C++ virtual function的问题A question about C++. Thanks.
An example of strategy patternbloomberg onsite
C++继承问题C++ 一题
问个c++的问题问一个c++ 函数指针的问题
相关话题的讨论汇总
话题: foo话题: bloomberg话题: interview话题: int话题: function
进入JobHunting版参与讨论
1 (共1页)
l**n
发帖数: 88
1
1. 25 horses , five lanes, how many times you need to run to pick up the 3rd
fast horse?
2. How do you debug the program if you have a bug in the program.
3. malloc memories through a function foo and free it in the main function.
m*****f
发帖数: 1243
2
请问fuction foo的定义? 可以返回malloc申请空间的地址吗
谢谢分享
m******9
发帖数: 968
3
对呀,对于第3题,能不能再解释的详细一点呢?谢谢
l**n
发帖数: 88
4
foo is a void function
a*****p
发帖数: 189
5
void foo(void **p); //use p to return the allocated memory, should work.
c*****o
发帖数: 178
6
第3题可不可以用global variable呢?
int* input;
static void Foo(int);
int _tmain(int argc, _TCHAR* argv[])
{
int size = 100;
try{
Foo(size);
::free(input);
cout<<"free memory in Main function"< }
catch(exception &e){
cout< }
return 0;
}
void Foo(int size){
try{
input = (int*)(::malloc(size));
cout<<"allocate " < }
catch(exception &e){
cout<
1 (共1页)
进入JobHunting版参与讨论
相关主题
问一个c++ 函数指针的问题问个C++ virtual function的问题
请问为什么这个程序会出现RunTime ErrorAn example of strategy pattern
问一道kth smallest element的题目C++继承问题
Palantir新鲜面经问个c++的问题
c++ 程序一问srand()的问题
写了一个find kth number in 2 sorted arrays的code 请大牛看C/C++里数组作函数的参数的话应该怎么写?
C++面试问题,如何从一个Class 访问另一class的private member请教一个c的概念题
amazon的那道题目请教一个OOP的C++问题
相关话题的讨论汇总
话题: foo话题: bloomberg话题: interview话题: int话题: function