
-----------------------------------
JWHooper
Mon Feb 18, 2008 4:30 am

Loops
-----------------------------------
Currently, I know the while, do-while, and for loops for C++. Are there more loop function available in C++, if possible?

-----------------------------------
michaelp
Mon Feb 18, 2008 8:48 am

RE:Loops
-----------------------------------
Don't think so.

-----------------------------------
OneOffDriveByPoster
Mon Feb 18, 2008 9:35 am

Re: Loops
-----------------------------------
Currently, I know the while, do-while, and for loops for C++. Are there more loop function available in C++, if possible?Do you need one?  Or are you just interested?

-----------------------------------
wtd
Mon Feb 18, 2008 10:26 am

RE:Loops
-----------------------------------
You've covered it.  Unless you count recursion.

-----------------------------------
OneOffDriveByPoster
Mon Feb 18, 2008 10:53 am

Re: RE:Loops
-----------------------------------
You've covered it.  Unless you count recursion.I think there is goto...

-----------------------------------
Clayton
Mon Feb 18, 2008 11:24 am

Re: RE:Loops
-----------------------------------
You've covered it.  Unless you count recursion.I think there is goto...

I shall never speak in your general direction again.

-----------------------------------
JWHooper
Mon Feb 18, 2008 3:54 pm

Re: RE:Loops
-----------------------------------
You've covered it.  Unless you count recursion.

Oh, okay. I was just making sure if I missed anything on loops.

-----------------------------------
md
Mon Feb 18, 2008 6:58 pm

RE:Loops
-----------------------------------
Actually C/C++ does do goto, and it's actually pretty useful for a very limited set of cases. 

Really though that's it for loops; and it's really all you ever need.

-----------------------------------
JWHooper
Mon Feb 18, 2008 7:15 pm

Re: RE:Loops
-----------------------------------
Actually C/C++ does do goto, and it's actually pretty useful for a very limited set of cases. 

Really though that's it for loops; and it's really all you ever need.

Thanks for the help!

j.

-----------------------------------
wtd
Tue Feb 19, 2008 11:18 am

Re: RE:Loops
-----------------------------------
Actually C/C++ does do goto, and it's actually pretty useful for a very limited set of cases. 

Really though that's it for loops; and it's really all you ever need.

A for-each loop would be nice...
