问题描述
- 请教一个c++文件流的问题
-
#include
#include
int main(){
ifstream fs("文件.txt",ios::in|ios::binary);
char test[3];
fs.read(test,2);
test[2]=0;
cout<<test;
return 0;}
devcpp下可以编译运行 但是运行后只显示 请按任意键继续 文件是一串汉字 想了很久想不出原因,跪求各位解答,拜托了
解决方案
解决方案二:
文件打开可能失败了,建议你进行判断
时间: 2024-11-01 08:05:56