第1个回答 2016-08-05
如果是在oracleebs中可以执行fnd_file.put_line(fnd_file.output,'String')和dbms_output.put_line('String')(一次输出不能超过255个字符);如果是Form,Report可以用text_io如果使用oracleDB可以使用dbms_output.put_line和utl_file.put_line(注意它的输出path是固定的,在安装数据库时候已经设定,可以从table中查询到)本回答被提问者采纳
第2个回答 2016-08-05
main(){FILE*fpt;chara[]="helloworld!";fpt=fopen("wendangming.txt","w");//打开文档,写入fprintf(fpt,"%s",a);fclose(fpt);}