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: b
Related Posts
In a serial port interface, the INTR line is connected to _____
The standard used in serial ports to facilitate communication is _____
The data transfer in UART is done in ______
The key feature of UART is _____
UART stands for ________
_____ to increase the flexibility of the serial ports.
The double buffer is used for _________
Join The Discussion