Top

Discussion

What is the output of this C code?

void main()

    {

        int k;

        for (k = -3; k < -5; k++)

            printf("Hello");

    }

 

  • A.Hello
  • B.Infinite hello
  • C.Run time error
  • D.Nothing

Answer: D

No answer description available for this question.

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

Post your comment