Top

Discussion

#include 
int main()
{
    int i = 3;
    while (i--)
    {
        int i = 100;
        i--;
        printf("%d ", i);
    }
    return 0;
}

 

  • A.Infinite Loop
  • B.99 99 99
  • C.99 98 97
  • D.2 2 2

Answer: B

No answer description available for this question.
 

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

Post your comment