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. }
  15.  
  16. //https://pt.stackoverflow.com/q/94010/101
Success #stdin #stdout 0s 4452KB
stdin
Standard input is empty
stdout
alguma frase aqui...