fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int foo[] = {2, 3, 5};
  5. int bar[] = {7, 11, 13};
  6. printf("%d\n", bar > foo);
  7. printf("%d\n", foo[3]);
  8. printf("%d\n", foo[4]);
  9. printf("%d\n", foo[5]);
  10. return 0;
  11. }
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
1
-1078289980
-1078289972
-1218023859