(1)
Regarding the scope of the variables identify the incorrect statement:
Answer: Option [A]
By default Automatic variables are initialized to Garbage value.
Answer: Option [A]
By default Automatic variables are initialized to Garbage value.
void fn() { static int i=10; printf("%d",++i); } main() { fn(); fn(); }
Answer: Option [C]
Answer: Option [B]
The storage classes in C are auto, extern, static and global. dec is not a storage class.
main() { static int num=8; printf("%d",num=num-2); if(num!=0) main(); }
Answer: Option [C]