求问怎么打开键盘输入的文件
比如我想打开s.txt,编程序如下#include"stdlib.h"
#include"stdio.h"
int main()
{
char e[10];
scanf("%s",e);
system("start e");
}
然后我再输入s.txt,显示找不到文件夹e,求问怎么能够打开s.txt
#include <stdio.h> #include <stdlib.h> int main() { char e[80]; scanf("%s",&e); system(e); return 0; } // 输入要打开的文件路径,按回车。