首页 试题详情
单选题

下面的程序执行后,文件test中的内容是 ()。 void fun(char *fname,char *st) { FILE *myf; int i; myf=fopen(fname,"w" ); for(i=0;st[i];i++) fputc(st[i],myf); fputc(‘\0‘,myf); fclose(myf); } main() { fun("test","new world"); fun("test","hello,");}

Ahello,

Bnew worldhello,

Cnew world

Dhello, rld

正确答案:A (备注:此答案有误)

相似试题

  • 单选题

    下面程序执行文件test中的内容 ()。void fun(char *fname,char *st){ FILE *myf; int i;myf=fopen(fname,w );for(i=0;st[i];i++)fputc(st[i],myf);fputc(‘ 0‘,myf);fclose(myf);}main(){ fun(test,new world); fun(test,hello,);}

    答案解析

  • 单选题

    下面程序创建了一个文件输出流对象,用来向文件test.txt中输出数据,假设程序当前目录下不存在文件test.txt,编译下面程序Test.java,将该程序运行3次,则文件test.txt 内容( )。import java.io.*;public class Test { public static void main(String args[]) { try { String s=ABCDE; byte b[]=s.getBytes(); FileOutputStream file=new FileOutputStream(test.txt,true); file.write(b); file.close(); }catch(IOException e) { System.out.println(e.toString()); }

    答案解析

  • 单选题

    已知“txt_demo.txt”文件中的内容为“live with smile,we will have harvest!”执行下面程序:txt_file = open(‘txt_demo.txt‘, ‘r‘,encoding=‘utf-8‘)txt_file.seek(16, 0)print(txt_file.read())输出结果是( )。

    答案解析

  • 单选题

    使用大数据计算服务MaxComputeodpscmd客户端中的jar命令调用MapReduce时,需要指定两个参数:casspath 和resources。比如以下命令执行了一个MapReduce程序,输入为表t jn,输出为表t out:jar-resources test.jar-casspath test.jar test int_out;其中,test,jar出现了两次,请判断以下说法正确()

    答案解析

  • 单选题

    下面在HTML中使用<li></li>标签编写列表在浏览器中的显示效果,列表内容应放置在( )标记内。下面编程基本步骤1. 分析需求2. 设计算法3. 编写程序4. 输入与编辑程序5. 编译6. 生成执行程序7. 运行

    答案解析

热门题库