C - Operators - Discussion

You Are Here :: Home > C > Operators - Discussion

 



Q.

What will the following code print?

int count = 1;
while (count <= 3)
{
System.out.print(count + " ");
count++;
}

A. 1 2 3 B. 1 2
C. 3 D. 1 1 1

Answer: Option A
Explaination:

 


No Explanation



Discussion

Your Comments Goes here...
NameDiscussion