运行时的C程序,下列哪些变量在内存中的stack区域的有() int a = 0;
char *p1;
int main(void) {
int b;
char s[] = "abc";
char *p2;
char *p3 = "123456";
static int c =0;
p1 = (char *)malloc(10);
free(p1);
return 0;
} https://www.nowcoder.com/questionTerminal/a0f149b68f23433785eaaa2a13872a00