Page 1 of 1

What will be the sequence of allocation and deletion of variables in the following C code?

Posted: Wed Jul 13, 2022 7:54 pm
by answerhappygod
#include <stdio.h> int main() { int a; { int b; } }
a) a->b, a->b
b) a->b, b->a
c) b->a, a->b
d) b->a, b->a