《上海贝尔笔试题.docx》由会员分享,可在线阅读,更多相关《上海贝尔笔试题.docx(10页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、上海贝尔笔试题上海贝尔笔试题上海贝尔聘请程序员,(笔试)时通常都是考以下这些题目,有 意应聘该公司的朋友们,要多加留意了,上海贝尔笔试题关于C语言的几个程序题一、请填写BOOL , float,指针变量与零值比较的if语句。 (10 分)请写出BOOL flag与零值比较的if语句。(3分)标准答案:if ( flag )if ( !flag )如下写法均属不良风格,不得分。if (flag = TRUE)if (flag = 1 )if (flag = FALSE)if (flag = 0)请写出float x与零值比较的if语句。(4分)标准答案示例:const float EPSINON
2、 = 0.00001;if (x = - EPSINON) (x = EPSINON)不行将浮点变量用二二或!=与数字比较,应当设法转化成二 或二此类更多相关的(笔试题)目)文章推举,大家敬请连续阅读:电 子(商务英语)笔试题 厦新笔试题 联合汽车笔试题文档内容到此结束,欢迎大家下载、修改、丰富并分享给更多有 需要的人。形式。如下是错误的写法,不得分。if (x 二二 0. 0)if (x != 0. 0)请写出char *p与零值比较的if语句。(3分)标准答案:if (p NULL)if (p != NULL)如下写法均属不良风格,不得分。if (p - 0)if (p != 0)if (
3、p)if (!)二、以下为Windows NT下的32位C+程序,请计算sizeof的 值(10分)char str=Hello;char *p = str ;int n = 10;请计算sizeof (str )=6 (2 分)sizeof ( p ) = 4 (2 分)sizeof ( n ) = 4 (2 分)void Func ( char str100) (请计算sizeof ( str )=4 (2 分)void *p = malloc( 100 );请计算sizeof ( p ) = 4 (2 分)三、简答题(25分)1、头文件中的ifndef/define/endif干什么用?
4、 (5分)答:防止该头文件被重复引用。2 ttinclude 和 ttinclude filename, h5有什么区分?(5 分)答:对于#include ,编译器从标准库路径开头搜寻filename, h 对于#include filename, h,编译器从用户的工作路径开头 搜寻 filename, h3、const有什么用途?(请至少说明两种)(5分)答:(1)可以定义const常量(2) const可以修饰函数的参数、返回值,甚至函数的定义体。被const修饰的东西都受到强制爱护,可以预防意外的变动,能提高程序的健壮性。4、在C+程序中调用被C编译器编译后的函数,为什么要加 ext
5、ern C ?(5分)答:C+语言支持函数重载,C语言不支持函数重载。函数被C+ 编译后在库中的名字与C语言的不同。假设某个函数的原型为:void foo(int x, int y);该函数被C编译器编译后在库中的名字为_f。,而C+编译器则 会产生像_foo_int_in t之类的名字。C+供应了 C连接交换指定符号extern来解决名字匹配问题。5、请简述以下两个for循环的优缺点(5分)for (i=0; iN; i+) (if (condition) DoSomethingO ;elseDoOtherthing();)if (condition) (for (i=0; iN; i+)D
6、oSomethingO ; ) else (for (i=0; iN; i+) DoOtherthing();)优点:程序简洁缺点:多执行了 N-1次规律推断,并且打断了循环流水线作业, 使得编译器不能对循环进行优化处理,降低了效率。优点:循环的效率高缺点:程序不简洁四、有关内存的思索题(每小题5分,共20分)void GetMemory(char *p) (p = (char *)malloc(100);void Test(void)(char *str = NULL;GetMemory(str);strcpy(str, hello world);printf (str);)请问运行Test
7、函数会有什么样的结果?答:程序崩溃。由于GetMemory并不能传递动态内存,Test函数中的str始终都是NULL。strcpy (str, hello world);将使程序崩溃。char *GetMemory(void)(char p = hello world;return p;void Test(void)(char *str = NULL;str = GetMemory();printf (str);请问运行Test函数会有什么样的结果?答:可能是乱码,资料共享平台上海贝尔笔试题(https:/. unjs) o由于GetMemory返回的是指向栈内存的指针,该指针的地址不 是NU
8、LL,但其原现 的内容已经被清除,新内容不行知。void GetMemory2(char *p, int num) (*p =(char *)malloc(num);void Test(void) (char *str = NULL;GetMemory(str, 100);strcpy(str, hello);printf (str);请问运行Test函数会有什么样的结果?答:(1)能够输出hello(2)内存泄漏void Test(void) (char *str = (char *) malloc(100);strcpy(str, hello);free(str);if(str != NU
9、LL) strcpy(str, world);printf (str);请问运行Test函数会有什么样的结果?答:篡改动态内存区的内容,后果难以预料,特别危急。由于free (str);之后,str成为野指针,if (str !=NULL)语句不起作用。五、编写strcpy函数(10分)已知strcpy函数的原型是char *strcpy(char *strDest, const char *strSrc);其中strDest是目的字符串,strSrc是源字符串。(1)不调用C+/C的字符串库函数,请编写函数strcpychar *strcpy (char *strDest, const ch
10、ar *strSrc); (assert (strDest!=NULL)(strSrc !=NULL); / 2 分char address = strDest; / 2 分while( (*strDest+ = * strSrc+) != 0 ) / 2 分NULL ;return address ; 2 分)(2) strcpy能把strSrc的内容复制到strDest,为什么还要 char *类型的返回值?答:为了实现链式表达式。2分例如 int length = strlen( strcpy ( strDest, “hello world);六、编写类String的构造函数、析构函数和
11、赋值函数(25分) 已知类String的原型为:class String(public:String (const char *str = NULL) ; / 一般构造函数String (const String other) ; / 拷贝构造函数String(void) ; /析构函数String operate = (const String other) ; / 赋值函数private:char *m_data; /用于保存字符串;请编写String的上述4个函数。标准答案:/ String的析构函数String:String(void) 3分(delete mdata;/由于m_dat
12、a是内部数据类型,也可以写成delete m data;)/ String的一般构造函数String:String(const char *str) 6分(if (str=NULL)m data = new charl ; /若能加NULL推断则更好*m_data = 0;else int length = strlen(str);m_data = new char length+1 ; / 若能加 NULL 推断则更好 strcpy(m_data, str);/拷贝构造函数String:String(const String other) 3分(int length = strlen(oth
13、er. m_data);m data = new char length+1 ; / 若能加 NULL 推断则更好 strcpy(m_data, other. m_data);)/赋值函数String String:operate = (const String other) / 13 分 (/ (1)检查自赋值 4分if (this 二二 other)return *this;/ (2)释放原有的内存资源 3分 delete m_data;/ (3)安排新的内存资源,并复制内容 3分 int length = strlen(other. m_data);m data = new char length+1 ; / 若能加 NULL 推断则更好 strcpy(m data, other. m_data);/ (4)返回本对象的引用 3分