int a;
static int b;
const int c;
int d=0;
int main(int argc, char **argv)
{
int e;
static int f;
const int g;
int h=0;
char *p=malloc(1);
}
问:a(全局存储区吧), b(静态存储去), c(全局存储区吧), d(全局存储区), e(肯定是栈区), f(静态存储去),
g(也是栈区), h(栈区), p(栈区,p指向的内存是堆区)分别位于()
A.text段 B.data段 C.rodata段 D.bss段 F.debug段 G.info段 G.stack段 H.heap段