Top

Discussion

How many times GeeksQuiz is printed

#include
int main()
{
    int i = -5;
    while (i <= 5)
    {
        if (i >= 0)
            break;
        else
        {
            i++;
            continue;
        }
        printf("GeeksQuiz");
    }
    return 0;
}

 

  • A.10 times
  • B.5 times
  • C.Infinite times
  • D.0 times

Answer: D

No answer description available for this question.
 

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

Post your comment