fork download
  1. #include <stdio.h>
  2. #include <stdint.h>
  3. #include <stdlib.h>
  4.  
  5. int main(int argc, char *argv[])
  6. {
  7. int N = 10 ;
  8.  
  9. int (*A)[N] = malloc(N * N * sizeof(int));
  10.  
  11. A[0][0] = 42 ;
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 2420KB
stdin
Standard input is empty
stdout
Standard output is empty