单项选择题

软件调试的日的是( )。

A.发现错误
B.改正错误
C.改善软件的性能
D.挖掘软件的潜能
<上一题 目录 下一题>
热门 试题

单项选择题
以下选项中不能正确把cl定义成结构体变量的是( )。
A.typedef struct
int red;
int green;
int blue;
COLOR;
COLOR cl;
B.struct color cl
int red;
int green;
int blue;

C.struct color
int red;
int green;
int blue;
cl;
D.struct
int red;
int green;
int blue;
cl;
单项选择题
以下能正确定义一维数组的选项是( )。
A.int num[];
B.#define N 100
int num[N];
C.int num[0…100];
D.int N=100;
int num[N];
相关试题
  • 以下程序运行后的输出结果是 【20】 。...
  • 以下程序的功能是调用函数fun计算:m=1-...
  • 以下程序运行后的输出结果是 【19】 。...
  • 请在以下程序第一行的下划线处填写适当内容...
  • 以下程序运行后的输出结果是 【17】 。...