Page 440 - C++
P. 440

cout<<"\n
                ³ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄijÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄij"
                ;
                       cout<<"\n       ³  DATE(DAY)              ³
                ³";
                       cout<<"\n
                ³ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄijÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄij"
                ;
                       cout<<"\n       ³  DATE(MONTH)            ³
                ³";
                       cout<<"\n       ³ÄÄÄÄÄÄÄÄÄÄÄÄ-
                ÄÄÄÄÄÄÄÄÄÄÄijÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄij";
                       cout<<"\n       ³  DATE(YEAR)             ³
                ³";
                       cout<<"\n
                ³ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄijÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄij"
                ;
                       cout<<"\n       ³  TIME(HOUR)             ³
                ³";
                       cout<<"\n
                ³ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄijÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄij"
                ;
                       cout<<"\n       ³  TIME(MINUTE)           ³
                ³";
                       cout<<"\n
                ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ"
                ;
                       gotoxy(36,4);
                       puts(Sch_name);
                       gotoxy(36,6);
                       puts(Job);
                       gotoxy(36,8);
                       cout<<DT.dd;
                       gotoxy(36,10);
                       cout<<DT.mm;
                       gotoxy(36,12);
                       cout<<DT.yy;
                       gotoxy(36,14);
                       cout<<DT.hr;
                       gotoxy(36,16);
                       cout<<DT.min;
                }
                /************************************************************/
                void add_contact()   //adding new contact
                {
                       Contact C;
                       ofstream fout("contact.dat",ios::app|ios::binary);
                       C.CGetdata();
                       fout.write((char*)&C,sizeof(C));
                       cout<<"\nYour information is in safe hands :) ";
                       fout.close();
                }
                /**********************************************************/
                void delete_contact()   ///deleting a saved contact
   435   436   437   438   439   440   441   442   443   444   445