Top

Discussion

What is the output of this C code?

int main()

    {

        printf("before continue ");

        continue;

        printf("after continue\n");

    }

 

  • A.Before continue after continue
  • B.Before continue
  • C.after continue
  • 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