Top

Discussion

What is the output of this C code?

int *i;
    int main()
    {
        if (i == NULL)
            printf("true\n");
        return 0;
    }

 

  • A.true
  • B.true only if NULL value is 0
  • C.Compile time error
  • D.Nothing

Answer: A

No answer description available for this question.

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

Post your comment