How come when I run this main.cpp:
#include <iostream>
#include <typeinfo>
using namespace std;
struct Blah
{};
int main()
{
cout << typeid(Blah).name() << endl;
return 0;
}
using gcc version 4.4.4
by compiling it like:
g++ main.cpp
I get this:
4Blah <-- what is that 4 doing there?
On Visual C++ 2008, I would get:
struct Blah <--- expected
Is there a way to make it just print
Blah or struct Blah?