Top

Discussion

What is the output of this C code?    

int main()
    {
        int i = 1;
        if (i++ && (i == 1))
            printf("Yes\n");
        else
            printf("No\n");
    }

 

  • A.Yes
  • B.No
  • C.Depends on the compiler
  • D.Depends on the standard

Answer: B

No answer description available for this question.

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

Post your comment