A.解释程序
B.解释计划
C.调试程序
D.编译程序
第1题:
第2题:
big data中文翻译为()。
第3题:
若文本文件f1.txt中原有内容为:Program,则运行以下程序后文件f1.txt中的内容为________。 int main(void){ FILE *fp1; fp1=fopen("f1.txt","w"); fprintf(fp1,"123"); fclose(fp1); }
A.123
B.Program123
C.1234
D.123Program
第4题:
IDE的中文翻译是什么?
第5题:
下列是为字符数组赋字符串的语句组,其中错误是:
A.char s[10]; s=”program”;
B.char s[]=”program”;
C.char s[10]=”Hello!”;
D.char s[10];strcpy(s,”hello!”);
第6题:
WBS的全称是()(中文翻译)。