C Programming :: Declarations and Initializations
-
What will be the output of the program?
#include
int main() { int X=40; { int X=20; printf("%d ", X); } printf("%d\n", X); return 0; } -
In the following program where is the variable a getting defined and where it is getting declared?
#include