fork(1) download
  1. #include <iostream>
  2.  
  3. void wyswietl() {
  4.  
  5. std::cout << "to jest funkcja, ktora pozwala na wypisanie tego tekstu" << std::endl;
  6.  
  7. std::cout << std::endl; // Pusty wiersz
  8.  
  9. std::cout << "to jest funkcja, ktora pozwala na wypisanie tego tekstu" << std::endl;
  10.  
  11. }
  12.  
  13. int main() {
  14.  
  15. wyswietl();
  16.  
  17. return 0;
  18.  
  19. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
to jest funkcja, ktora pozwala na wypisanie tego tekstu

to jest funkcja, ktora pozwala na wypisanie tego tekstu