Examveda
Examveda

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;
    }
}

A. a->b, a->b

B. a->b, b->a

C. b->a, a->b

D. b->a, b->a

Answer: Option B


This Question Belongs to C Program >> Function

Join The Discussion

Related Questions on Function