Top

Discussion

What will be the output of the program?

#include

int main()
{
    typedef float f;
    static f *fptr;
    float fval = 90;
    fptr = &fval;
    printf("%f\n", *fptr);
    return 0;
}

 

  • A.9
  • B.90.000000
  • C.90

Answer: C

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment