It's called C - How to program by Deitel or something.
It's taught me everything, I'm up to Functions and stuff.
Chapter 5 called Functions, Chapter 6 is called arrays.
Chapter 5 teaches you functions and recursive functions.
And it says you don't need this, just for program readability and stuff and actually wastes performance using functions. I found that interesting, how hard recursive functions seem to be at this time and how much it's pushing you to learn, when you could just write a loop and solve it easier.
It also taught you a bunch of storage classes that pretty much said were useless because today's compilers automatically use the best class.
Are any of you guys seeing recursive functions very useful as compared to just writing the loops?
It's taught me everything, I'm up to Functions and stuff.
Chapter 5 called Functions, Chapter 6 is called arrays.
Chapter 5 teaches you functions and recursive functions.
And it says you don't need this, just for program readability and stuff and actually wastes performance using functions. I found that interesting, how hard recursive functions seem to be at this time and how much it's pushing you to learn, when you could just write a loop and solve it easier.
It also taught you a bunch of storage classes that pretty much said were useless because today's compilers automatically use the best class.
Are any of you guys seeing recursive functions very useful as compared to just writing the loops?