#include <iostream> using namespace std; class T1 { const int t = 100; public: T1() { cout << "T1 constructor: " << t << endl; } }; Cuando intento inicializar la variable miembro const tcon 100. Pero me da el siguiente error: test.cpp:21: error: ISO C++ forbids...