fork download
  1. #include <stdio.h>
  2. void main() {
  3.  
  4. //int a=20,b=40,c=80,r=0;
  5. //r = a + b + r += c;
  6. int a[10][5]={1,2},i=0,j=1,r;
  7. r = a[i,j];
  8. printf("%d %d\n",r,a[1]);
  9.  
  10.  
  11. }
Runtime error #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
-1077881712 -1077881712