0 votes
1
void main() { int *x; x =f();printf("%d", *x); }int *f() { int y = 7 ; return &y; }