单项选择题

数据库系统的核心是

A.数据库
B.数据库管理系统
C.模拟模型
D.软件工程
<上一题 目录 下一题>
热门 试题

单项选择题
有以下程序 #include <stdio.h> main() int i,j,m=55; for(i=1;i<=3;i++) for(j=3;j<=i;j++)m=m%j; printf( %d n ,m); 程序的运行结果是
A.0
B.1
C.2
D.3
单项选择题
有以下函数 int aaa(char *s) char *t=S; while(*t++); t--; return(t-s); 以下关于aaa函数的功能的叙述正确的是
A.求字符串s的长度
B.比较两个串的大小
C.将串s复制到串t
D.求字符串s所占字节数
相关试题
  • 若程序执行时的输入数据是 2473 ,则...
  • 下列程序是用来判断数组中特定元素的位置所...
  • 有下面程序段 #include stdio.h #inc...
  • 现有如下程序段 #include stdio.h mai...
  • 有以下程序 #include <stdio.h> int...