fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6. setlocale(LC_ALL, "rus");
  7.  
  8. char cstr[4] = "lol" ;
  9.  
  10. cout << cstr << endl;
  11.  
  12. cstr[0] = '\0';
  13.  
  14. cout << cstr << endl;
  15.  
  16. system("pause");
  17.  
  18. return 0;
  19. }
Success #stdin #stdout #stderr 0s 3456KB
stdin
Standard input is empty
stdout
lol

stderr
sh: 1: pause: not found