fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class AlgumaClasse {
  5.  
  6. public:
  7. static string recebetexto;
  8. };
  9.  
  10. string AlgumaClasse::recebetexto = "alguma frase aqui...";
  11.  
  12. int main() {
  13. cout << AlgumaClasse::recebetexto;
  14. return 0;
  15. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
alguma frase aqui...