Thread: do-while loop
View Single Post
Old 06-19-2003, 01:57 PM   #2 (permalink)
joe_bruin
LOAD "*",8,1
 
Join Date: Feb 2003
Location: la.ca.us
Posts: 254
joe_bruin is on a distinguished road
your "while" should not be inside your "do" block.

Code:
do
{
  // something
} while(a == 1);
joe_bruin is offline   Reply With Quote