Q80
What will be the sequence of allocation and deletion of variables in the following C code? #include int main() int a; int b;
A.
a->b, a->b
B.
a->b, b->a
AnswerC.
b->a, a->b
D.
b->a, b->a
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board