单项选择题

开发大型软件时,产生困难的根本原因是( )。

A.大系统的复杂性
B.人员知识不足
C.客观世界千变万化
D.时间紧、任务重
<上一题 目录 下一题>
热门 试题

单项选择题
以下程序的输出结果是( )。 #include <stdio.h> #include <string.h> main() char str[12]='s','t','r','i','n','g'; printf( %d n ,strlen(str) );
A.6
B.7
C.11
D.12
单项选择题
有以下程序: #include <stdio.h> union pw int i; char ch[2]; a; main() a.ch[0]=13; a.ch[1]=0; printf( %d n ,a.i); 程序的输出结果是(注意:ch[0]在低字节,ch[1]在高字节)( )。
A.13
B.14
C.208
D.209
相关试题
  • 请选出以下程序的输出结果( )。 #incl...
  • 已知字符0的ASCII码为十六进制的30,现...
  • 有以下程序: #include <stdio.h> m...
  • 请读程序: #include <stdio.h> fun...
  • 读程序: #include <stdio.h> f(in...