PREV INDEX NEXT

Author: Stan Eisenstat
Subject: Re: [Cs323] t15
Date: Friday, 06 Nov 2020, 15:09:08


    > Message Posted By: Unknown
    >
    > DATA = 860, HEAP = 116840, STACK = 7544
    >
    > What do HEAP and STACK mean

DATA is the size of the data segment (= globals and
static locals); HEAP is the amount of storage allocated
and not freed; and STACK is a very crude estimate of the
stack size.

--Stan-
PREV INDEX NEXT