#include<fstream> #include<iostream> using namespace std; int main() { ofstream f; f.open("1.txt"); f.put(65); std::cout<<"Inserted"; f.close(); return 1; }