#include <iostream> using namespace std; class T1 { const int t = 100; public: T1() { cout << "T1 constructor: " << t << endl; } }; Quando estou tentando inicializar a variável const membro tcom 100. Mas está me dando o seguinte erro: test.cpp:21: error: ISO C++...