Пример #1
0
int main2(int argc, char**argv)
{
   const person ira("Ira Pohl", 38, 1110111UL);
   ira.print();
   ira.bday();
   ira.print();

}
Пример #2
0
void
test(person argp)
{
  person testp;
  
  ;
  argp.print();
  testp = argp;
  argp.print();
  testp.print();
  ;
}