โช Choose the correct option.
How many times will while loop be executed in the following C program.
void main(){
x = 500;
while (x < = 500)
{
x=x-600;
if (x < 0)
break;
}
void main(){
x = 500;
while (x < = 500)
{
x=x-600;
if (x < 0)
break;
}