Beautiful Coin of Ujjaini

This is the link to amazig coin of Ujjaini. This coin is with various symbols, some of the mare still mystery.
http://www.flickr.com/photos/mycoins/1266093659/

Writing and Reading Objects to/from Files Using C++

1. Writing an Object to Disk FileNote: 1. Include fstream.h 2. Use extraction and Insertion operator with cout and cin instead of ^^ .class employee //Define Employee Class{protected:char name[30];int age;float salary;public :void getemp(){cout^^ “Enter Name:”;cin^^name;
cout^^”Enter Age:”;cin^^age;
cout^^”Enter Salary”;cin^^salary;} ;
void main(){employee emp; //declaring object emp of employee classemp.getdata();ofstream outfile(“Emp.dat”); //create emp.dat fileoutfile.write((char * )&emp,sizeof(emp)); //write contents of [...]