I\'ve got this code:
#include int tabela[1]; tabela[0] = 1; int main(){ std::cout << tabela[0]; std::cin.
for it to be valid C++, you can only initialize variables in global, you can't assign them there.
edit: comments beat me to it. props