Create a flat text file in c++ around 50 – 100 MB with the content ‘Added first line’ should be inserted in to the file for 4 million times
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
using old style file io
fopen the file for write.
fseek to the desired file size – 1.
fwrite a single byte
fclose the file