[Bug c/71746] Scope Variable Address (Stack) Mismatch
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71746 Furkan USLU changed: What|Removed |Added Status|RESOLVED|CLOSED --- Comment #2 from Furkan USLU --
[Bug c/71746] New: Scope Variable Address (Stack) Mismatch
Assignee: unassigned at gcc dot gnu.org Reporter: mfurkanuslu at openmailbox dot org Target Milestone: --- int main() { int* ptr; { int svar = 13; ptr = &svar; } int mvar = 144; printf("%d\n", *ptr); output is 13 but if i add this