以下程序的输出结果是()。int abc(int u, int v);main() {int a=24, b=16, c;c=abc (a, b);printf("%d\n", c);}int abc(int u, int v) {int w;while(v) {w= u%v; u=v; v=w;}return u;}
A. 6
B. 7
C. 8
D. 9
以下程序的输出结果是( )。#include "stdio.h"#define MIN(x, y) (x)< (y)?(x):(y)main() {int a, b, c;a=20;b=10;c=5*MIN(a, b);printf("%d\n", c);}
A. 20
B. 200
C. 10
D. 50
在下列#include命令中,正确的一条是()。
A.
B. include[string.h]
C. B.
D. include{math.h}
E. C.
F. include(stdio.h)
G. D.
H. include "stdio.h"
宏定义#define PI 3.1415926的作用是:指定用标识符PI来代替一个()。
A. 单精度数
B. 字符串
C. 双精度数
D. 整数