#include<iostream.h>
#include<conio.h>
typedef class
{
int i;
float b;
public:
obj()
{
cout<<"\n Is this constructor \n";
}
void show()
{
cout<<"fkjhfg";
}
}obj;
void main()
{
clrscr();
obj o;
o.show();
getch();
}
In this code ,of Anonymous class object is calling the show function ,but its constructor is not called. Can some body Explain me this behaviour of the anonymous class.