我写了以下代码:
int fd = _dup(fileno(stdout));
FILE* tmp = freopen("tmp","w+",stdout);
HANDLE out = GetStdHandle(STD_OUTPUT_HANDLE);
if (out == INVALID_HANDLE_VALUE){
//error
}
else if (out == NULL) {
//error
}
else {
WriteFile(out, "num", sizeof("num"), NULL, NULL);
}
在最后一行我得到一个断言“ Unhandled exception...:Access violation writing location 0x000000
”可能是什么问题以及解决方法?
谢谢你。
PS:由于项目限制我不能使用freopen