Top

Discussion

What is the output of this C code?

void main()

    {

        int i = 0;

        if (i == 0)

        {

            printf("Hello");

            continue;

        }

    }

 

  • A.Hello is printed infinite times
  • B.Hello
  • C.varies
  • D.Compile time error

Answer: D

No answer description available for this question.

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

Post your comment