单项选择题
有以下程序:
#include <stdio.h>
fun(int a, int b)
if(a>b) return(
A.;
else return(
B.;
&n
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
软件调试的日的是( )。
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;
点击查看答案&解析
相关试题
有以下结构体说明和变量定义,如下图所示,...
以下程序的功能是计算:。 #include <s...
以下程序中函数scmp的功能是返回形参指针s...
设变量x为float型且已赋值,则以下语句中能...
设有如下程序段: int x=2002,y=...