// Start loop
int x=0; while (x==0){
... your code...
// end while loop
x=1;
}
Well that is a bit of do nothing. It always runs once. Why any loop at all then?
// Start loop
int x=0; while (x==0){
... your code...
// end while loop
x=1;
}
Well that is a bit of do nothing. It always runs once. Why any loop at all then?