error C2440: 'initializing' : cannot convert from 'const int' to 'struct print'
No constructor could take the source type, or constructor overload resolution was ambiguous
Anyone know how I can get the struct to intialize?
In C++ "struct" and all other "user types" are "class" and all member Initialization must be located in constructor scope. See this example...
This is RIGHT:
struct Tst
{
Tst():s("asd"){};
CString s;
};
This IS not right:
struct Tst
{
CString s("ASD");
};