background image

{

char * str =null;

getmemory(str);

strcpy(str,”hello,world”);

printf(str);

}

请问运行 Test 函数会有什么样的结果

2.    char*getmemory(void) 

{ char p[]=”hello world”;

return p;

}

void test(void)

{

char *str=null;

str=Getmemory();

printf(str);

} 请问运行 Test 函数会有什么样的结果.

面试题(三)

前三道程序题

(下面的题不排序,有笔试题,也有面试题)

4、怎么划分缺陷的等级?

5、怎么评价软件工程师?

6、软件工程师的素质是什么?

7、怎么看待软件测试?

8、软件测试是一个什么样的行业?

9、图书(图书号,图书名,作者编号,出版社,出版日期)

作者(作者姓名,作者编号,年龄,性别)