fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. const int SIZE = 4;
  6. int a[SIZE] = {-1};
  7. for(int x = 0; x < SIZE; x++)
  8. cout << a[x] << " ";
  9. return 0;
  10. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
-1 0 0 0