type
status
slug
summary
tags
category
icon
password
new update day
Property
Apr 10, 2023 11:42 AM
created days
Last edited time
Apr 10, 2023 11:42 AM
#include <csignal> #include <fstream> ofstream result_file(result_file_path); result_file.seekp(-1, ios::end); int size = result_file.tellp(); result_file.close(); FILE* file = fopen(result_file_path.c_str(), "ab+"); int a=fileno(file); ftruncate(a,size);
 
 
欢迎加入喵星计算机技术研究院,原创技术文章第一时间推送。
notion image
 
C++ 中虚函数与纯虚函数在开发过程中的区别与作用116. 填充每个节点的下一个右侧节点指针