1234567891011
struct Animals { string breedType; double price; } animal; animal.breedType = "cat"; animal.price = 200; ofstream outFile("Animals.txt", ios::in | ios::binary); outFile << animal.breedType << ' ' << animal.price << endl;