fork(7) download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int array[11];
  5.  
  6. int main() {
  7. memset((int *) array, (int) 2, sizeof(int) * 11);
  8. cout << array[5] << endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 3140KB
stdin
Standard input is empty
stdout
33686018