CrazyJosh1
Active Member
Other than the obvious text, what is the difference between the "Do/While" and "While" coding?
ie:
and
as far as I can tell, they should both do the same thing, but they do act differently. ie: sometimes "while" doesn't work as well as "Do/while" any reason behind this that I am missing?
ie:
Code:
do
{
xxx
}
while yyy
Code:
while yyy
{
xxxx
}