fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. const int YourMother = 42;
  5. int arr[64];
  6. arr[YourMother] = 666;
  7. printf("%d\n", arr[YourMother]);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
666