Pages

100 Contemporary Living Room Designs

Thursday, August 2, 2012

SIMPLE CONSTRUCTOR PROGRAM

#include<iostream.h>
#include<conio.h>
class test
{
   public:
   test()
  {
      cout<<"constructor called"<<endl;
  } 
}
void main()
{
   test t;
   getch();
}

output


No comments:

Post a Comment