View Code of Problem 3629

#include <stdio.h>

int main(){
    int xx[100000][100000];
  
    xx[10000][10000-1] = 1;
    return 0;
}

Double click to view unformatted code.


Back to problem 3629