由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问一道c++面试题
相关主题
问个面试题Interview questions, Bloomberg
一道count frequency of all words的面试题一个容易记忆的permutation算法
一道面试题,求解好记(但不是最优)的combination算法
请教ebay 的面试题一道one C++ question
发两个软件组的面试题C++ object size一问
面试结束,晒3个 Java面试题,请大家讨论。One C++ question
[请教] C++ coding questionone C++ question
amazon的那道题目发个题目给大家复习一下marco
相关话题的讨论汇总
话题: endl话题: cout话题: main话题: thing话题: hello
进入JobHunting版参与讨论
1 (共1页)
s********9
发帖数: 586
1
刚刚开始骑驴找马,今天 和一个recruiter聊了一会,他问了几个简单的c++问题,
其中最后一个题没答出来,所以过来请教一下
题目是 how to print "hello world" before execution of main function?
d****o
发帖数: 1055
2
#include
using std::cout;
using std::endl;
class thing
{
public:
thing(){cout << "hello, world" << endl;};
};
thing myclass;
int main(void)
{
cout << "Started" << endl;
return 0;
}

【在 s********9 的大作中提到】
: 刚刚开始骑驴找马,今天 和一个recruiter聊了一会,他问了几个简单的c++问题,
: 其中最后一个题没答出来,所以过来请教一下
: 题目是 how to print "hello world" before execution of main function?

O*******O
发帖数: 22
3
请问,
c的宏,会不会也这样先执行?
s********9
发帖数: 586
4
懂了,多谢大牛!!

【在 d****o 的大作中提到】
: #include
: using std::cout;
: using std::endl;
: class thing
: {
: public:
: thing(){cout << "hello, world" << endl;};
: };
: thing myclass;
: int main(void)

C***U
发帖数: 2406
5
学习了

【在 d****o 的大作中提到】
: #include
: using std::cout;
: using std::endl;
: class thing
: {
: public:
: thing(){cout << "hello, world" << endl;};
: };
: thing myclass;
: int main(void)

w********s
发帖数: 1570
6
global var/file static var.
搞清楚有些变量在main前初始化就可以。
1 (共1页)
进入JobHunting版参与讨论
相关主题
发个题目给大家复习一下marco发两个软件组的面试题
Why I can't compile this function successfully面试结束,晒3个 Java面试题,请大家讨论。
C++: what is the output? How to interpret it?[请教] C++ coding question
C++ Q42: (C22)amazon的那道题目
问个面试题Interview questions, Bloomberg
一道count frequency of all words的面试题一个容易记忆的permutation算法
一道面试题,求解好记(但不是最优)的combination算法
请教ebay 的面试题一道one C++ question
相关话题的讨论汇总
话题: endl话题: cout话题: main话题: thing话题: hello