fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. char n[6]; /*não é possivel escrever
  6. Rodrigo no imput, pois meu nome excede
  7. o limite de 6 caracteres*/
  8.  
  9. cin >> n;
  10.  
  11. cout << n;
  12.  
  13. return 0;
  14.  
  15. }
Runtime error #stdin #stdout #stderr 0s 4176KB
stdin
rodrigo
stdout
Standard output is empty
stderr
*** stack smashing detected ***: <unknown> terminated