ofstream file;
file.open("C:/Users/Desktop/text.txt");
ofstream file;file << "8ы м0л0дцы! ТекстТекстТекстТекст 01 01";
file.close();
char buff[80];
ifstream fin("C:/Users/Desktop/text.txt");
fin >> buff;
cout << buff << endl;
fin.getline(buff, 80);
fin.close();
cout << buff << endl;