5.以下程序的输出结果是()。#include ”stdio.h”main(){int a=5, b=4, c=6, d;printf(”%d\n”, d=a>b? a>c?a:c :b);}
查看答案
以下专门用于输入字符串的函数为:()。
A. scanf
B. printf
C. gets
D. puts
以下哪个函数是向屏幕输出一串字符( )。
A. putchar
B. puts
C. strcpy
D. strcat
字符串的长度计算使用的函数是:()。
A. strlen
B. strcmp
C. strcat
D. puts
若字符数组stra的值为”door”, 字符数组strb的值为”double”,执行strcmp(stra,strb)后的值为( )。
A. 0
B. 大于0
C. 无法确定
D. 小于0