hi,
please clear me in this basic issue.
when the memory will be allocated to an object?
is it at compile time or runtime?
eg:
class one
{
public:
int i;
private:
one();
onemore();
}
int main()
{
one ob1;
retun 0;
}
so fir this case when will be the memory allocated for this object ob1?
thanks n regards
rees