C programming question

You could encompass it into a while loop and just do
Code:
while(1) 
{
if(x < 0 || x > 0)
{
// do work
// call break; when finished to get out of the while loop
}
}
 
Back
Top Bottom