fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a = 2;
  6. int b = 3;
  7. int c;
  8. c = a + b;
  9. int arr[c];
  10. arr[5] = 0;
  11. printf("%d",arr[9]);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
134513840