Use of file headers
#include <iostream>
#include <fstream>using namespace std;
int main()
{
fstream fout;
fout.open("test.txt", ios::out);
fout<<"Hello Coders";
fout.seekp(6, ios::beg);
fout<<"World";
fout.close();
}
I am a recent graduate eagerly looking for new experiences. With a solid foundation in Python, R Programming, SQL, Tableau, and Java, I am well-equipped to tackle diverse technical challenges. I enthusiastically embrace life's surprises, always eager to learn and experience something new. If you have any new opportunities or activities, please invite me—I am excited to explore them!
#include <iostream>
#include <fstream>
Comments
Post a Comment