//****************************************** //func read //****************************************** #include #include using namespace std; struct id{ char name[15]; char surname[15]; int idem; }; //========================================== int main(){ struct id user; ifstream in("marketUser",ios::binary|ios::in); if(!in){ cout<<"Error opening file\n"; return 1; } in.read((char*)&user, sizeof(struct id)); in.close(); cout<<"The content of file marketUser are...\n"; cout<