Home » C Programming » Variables » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    double p;
    int main()
    {
    printf("%g\n",p);
    return 0;
    }
    1. 0.000000
    2. Garbage value
    3. Depend on compiler
    4. 0
    5. None of these
Correct Option: D

0



Your comments will be displayed only after manual approval.