hi ,
What is the region that , local variables store garbage value and global variables store 0 value
What is the region that , local variables store garbage value and global variables store 0 value
void foo() { char* p= "gotcha!"; } void bar() { char* q; puts(q); } int main() { foo(); bar(); return 0; }
Comment