File Stream C++ Tutorial

#include 
#include   
using namespace std;  
class person      
   {  
   protected:  
      char name[80];
short age;          
   public:  
      void getData(){  
         cout << "Enter name: "; cin >> name;  
         cout << "Enter age: "; cin >> age;  
         }  
};  
int main(){  
   person pers;   
   pers.getData();
                  
   ofstream outfile("PERSON.DAT", ios::binary);  
   outfile.write(reinterpret_cast(&pers), sizeof(pers));  
   return 0;  
}