1. What is the output of this C code? #include <stdio.h> double i; int main() { printf(”%gn”,i); return 0; } a) 0 b) 0.000000 c) Garbage value d) Depends on the compiler AnswerAnswer: a [Reason:] None. 2. Which part of the program address space is p stored in the code given below? #include <stdio.h> int…