M
michael
Hi All,
I have the following:
class ClassA {
};
class ClassB {
};
int main(){
ClassA a;
ClassB b;
cout << typeid(a).name() << endl;
cout << typeid(b).name() << endl;
}
when this executes it prints:
6ClassA
6ClassB
Where does the '6' come from?
Thanks for your help
Regards Michael
I have the following:
class ClassA {
};
class ClassB {
};
int main(){
ClassA a;
ClassB b;
cout << typeid(a).name() << endl;
cout << typeid(b).name() << endl;
}
when this executes it prints:
6ClassA
6ClassB
Where does the '6' come from?
Thanks for your help
Regards Michael