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; }
a
b
c
s
p1