摘要: 已知字母A的ASCII代码值为65,若变量kk为char型,以下不能正确判断出比中的值为大写字母的表达式是[阅读全文:]
摘要: 有以下程序 #include<stdio.h> intfun(chars[]) { intn=0; while(*s<=′9′&&*s&[阅读全文:]
摘要: 若有定义: char *st= "how are you "; ,下列程序段中正确的是[阅读全文:]
摘要: 有下面程序段 #include "stdio.h" #include "string.h" main() {char a[3][20]={{"chin[阅读全文:]
摘要: 有一学生表文件,且通过表设计器已经为该表建立了若干普通索引。其中一个索引的索引表达式为姓名字[阅读全文:]
摘要: 有以下程序 fun(intx) { intp; if(x= =1)return (3); p=x-fun(x-2); return p; } main() {printf[阅读全文:]
摘要: 已知各变量的类型说明如下: int k,a,b; unsigned long w=5; double x=1.42; 则以下不符合C语言语[阅读全文:]
摘要: 假设职员表已在当前工作区打开,其当前记录的“姓名”字段值为“张三”(字符型,宽度为6)。在命令窗口输[阅读全文:]
摘要: 有如下程序 int a[10]={1,2,3,4,5,6,7,8,9,10}; int *p=&a[3],b;b=p[5]; 则b的值是[阅读全文:]
摘要: 现有格式化输入语句,scanf("x=%d],sum]y=%d,line]z=%dL",&x,&y,&z);,已知在输入数据[阅读全文:]