What will be the sequence of allocation and deletion of variables in the following C code?
#include <stdio.h>
int main()
{
int a;
{
int b;
}
}
#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
Answer: Option B

Join The Discussion