fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. int vetor[10];
  7. vetor [0] = 50;
  8. cout << vetor [0] << endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 4512KB
stdin
Standard input is empty
stdout
50