Help for this page

Select Code to Download


  1. or download this
    void do_simulation() {
        struct s* m;
    ...
        m = (struct s*)malloc(10000000 * sizeof(struct s));
        free(m);
    }
    
  2. or download this
    void do_simulation() {
        struct s* m = (struct s*)malloc(10000000 * sizeof(struct s));
        free(m);
    }