Vidyalelo
C Programming · Q80

Function

Programming · C Programming · question 80

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
Answer
C.
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