Search:
Forum
General C++ Programming
Help with functions
Page 2
Help with functions
Pages:
1
2
Oct 8, 2017 at 4:56am UTC
closed account (
48T7M4Gy
)
BTW Loops are better with 'internal' iterators
eg
for
(
int
j = 0; etc)
is better than
int
count;
then,
for
(count = 0; etc)
It avoids a lot of trouble if count ever gets changed outside the loop and the loop is easier to debug/check.
Oct 8, 2017 at 6:38am UTC
Shiro12
(43)
wow you straight out gave me the answer thanks and as for the loops i didnt know that was the case as ive only learned what my book has shown thanks!
Oct 8, 2017 at 6:39am UTC
Shiro12
(43)
Thanks to all that helped I very much appreciate it and want to apologize to all as i probably was a wee bit annoying
Oct 8, 2017 at 9:44pm UTC
Shiro12
(43)
Also thanks to you all I got through my java class so easily today as alot of it transfered from here once again thanks
Topic archived. No new replies allowed.
Pages:
1
2
C++
Information
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs