【简答题】下列哪个是C语言提供的合法的数据类型关键字。 A) Float B) signed C) integer D)Char
【简答题】给定程序中,函数fun的功能是:判断形参s所指字符串是否是"回文"(Palindrome),若是,函数返回值为1;不是,函数返回值为0。"回文"是正读和反读都一样的字符串(不区分大小写字母)。例如,LEVEL和Level是"回文",而LEVLEV不是"回文"。请选择在下画线处填入正确的语句,使程序得出正确的结果。#include #include #include int fun(char *s...
【简答题】阅读程序,写出程序运行结果。 #include void main( ) { char fun(char,int); char a='A'; int b=6; a=fun(a,b); putchar(a); } char fun(char a,int b) { char k; k=a+b; return k; }
【单选题】11-65. Which of the following italicized phrases indicates a subject-predicate relation?
A.
Mr. Smith's passport has been issued.
B.
The visitor's arrival was reported in the news.
C.
John's travel details have not been finalized.
D.
The new bookstore sells children's stories.
【简答题】读程序,写出程序运行的结果 . #include struct stu { int num;char name[10]; int age;}; void fun(struct stu *p) { printf("%s\n" ,(*p).name); } void main() { struct stu students[3]=...
【简答题】给定程序中,函数fun的功能是:判断形参s所指字符串是否是"回文"(Palindrome),若是,函数返回值为1;不是,函数返回值为0。"回文"是正读和反读都一样的字符串(不区分大小写字母)。 例如,LEVEL和Level是"回文",而LEVLEV不是"回文"。 请在程序的下画线处填入正确的内容并把下画线删除,使程序得出正确的结果。 注意:部分源程序在文件BLANK1.C中。 不得增行或删行,也不...
【简答题】读程序题,写出程序运行的结果。 #include struct stu { int num;char name[10]; int age;}; void fun(struct stu *p) { printf("%s\n" ,(*p).name); } void main() { struct stu students[3]={{9801,"Zhang",20} ,{9802,"Wang", 19...
【简答题】给定程序中,函数fun的功能是:判断形参s所指字符串是否是"回文"(Palindrome),若是,函数返回值为1;不是,函数返回值为0。"回文"是正读和反读都一样的字符串(不区分大小写字母)。例如,LEVEL和Level是"回文",而LEVLEV不是"回文"。请选择在下画线处填入正确的语句,使程序得出正确的结果。#include #include #include int fun(char *s...