samedi 30 avril 2016

Is there a difference between Debug and Release Mode in terms of memory allocation while using c++ in VS 2015

I am running this memory leakage code and I need to know if there is difference in memory allocation

int main() {
    while (true) {
        int* i = new int;
    }
return 0;
}

Aucun commentaire:

Enregistrer un commentaire