fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. struct p
  5. {
  6. string bardzo_dlugi_tekst;
  7. };
  8.  
  9. int main()
  10. {
  11. p obiekt;
  12.  
  13. cout << "Podaj tekst: ";
  14. getline(cin, obiekt.bardzo_dlugi_tekst);
  15. cout << "Bardzo dlugi tekst: " << obiekt.bardzo_dlugi_tekst << "\n";
  16.  
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0s 3432KB
stdin
We use cookies to improve our services. If you continue without changing your settings, we'll assume that you are happy to receive all cookies on Ideone website.
stdout
Podaj tekst: Bardzo dlugi tekst: We use cookies to improve our services. If you continue without changing your settings, we'll assume that you are happy to receive all cookies on Ideone website.