按不同人员的工作内容来分类软件过程,基本过程包括
- A.维护过程和改进过程
- B.开发过程和改进过程
- C.获取过程和供应过程
- D.改进过程和裁减过程
热度🔥283
若有以下程序
#include
#include
#include
typedef struct stu {
char *name, gender;
int score;
} STU;
void f(char *p)
{
p=(char *)malloc(10);
strcpy(p, "Qian");
}
main()
{
STU a={NULL, 'm', 290}, b;
a.name=(char *)malloc(10);
strcpy( a.name, "Zhao" );
b = a;
f(b.name);
b.gender = 'f'; b.score = 350;
printf("%s,%c,%d,", a.name, a.gender, a.score);
printf("%s,%c,%d\n", b.name, b.gender, b.score);
}
则程序的输出结果是
支持子程序调用的数据结构是( )。
为边界条件的逻辑测试做出改变时,容易引入错误,这种副作用归属于软件维护中的
在Word文档中包含了文档目录,将文档目录转变为纯文本格式的最优操作方法是( )。
软件测试用例包括( )。