flag=1;
while(flag)
{
}
if this is correct please explain me
while(flag)
{
}
if this is correct please explain me
int flag = 1;
int flag = 42;
while(flag) {}
int flag = 1337;
while(flag) {}
int flag = ++9000;
while(flag) {}
int flag = (7 == 7);
while(flag) {}
int flag = ! (1 > 2);
while(flag) {}
Comment