What will be the sequence of allocation and deletion of variables in the following C code?
Posted: Wed Jul 13, 2022 7:54 pm
#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
a) a->b, a->b
b) a->b, b->a
c) b->a, a->b
d) b->a, b->a