12
int an_integer; an_integer another_integer; //Won't compile! Using variable name as type!
1234
std::filebuf file; file.open("File.txt", std::ios::out); std::ostream file_out(&file); file_out << "This is output to a file\n";