Вывод замени на свой.
bool readfile(std::string& s, const char* filename) {
std::ifstream fp(filename);
if (!fp.is_open())
return false;
char nil = '\0';
std::getline(fp, s, nil);
fp.close();
return (s.length() > 0);
}
std::string text;
if( readfile(text, "C:\\1.txt") )
{
std::cout << text << std::endl;
}