下面程序中的“out.txt”是保存在哪的?怎么用type out.txt 命令查看啊! #include<stdio.h> main(){ FILE *fp; char string[80]; fp=fopen("out.txt","w"); printf("input a string:"); gets(string); fputs(string,fp); printf("写入成功,请用 type out.txt 命令查看\n"); fclose(fp); } 高人速进!!!