I tried google is why. D:
Where is Lazy Foo's at?
Where is Lazy Foo's at?
_wb_,Never code by guessing until the compiler errors disappear. That is the worst thing you can do. Don't write too much code at a time, and after the initial coding, try to keep your program working at all times. I usually write 5 to 50 lines of code at a time (in C(++), in higher level languages that would be more like 1 to 10 lines), and I typically write my code without any bugs except maybe one or two small typos, which are easily catched by the compiler (actually often even by the the syntax highlighter if I had looked a bit better at the color of things). When you're not very experienced, you'll make more mistakes, and you'll have more bugs in your reasoning than in the syntax. No compiler will give you meaningful information when there are reasoning bugs in your program (they probably even happily compile it without warnings or errors). So it's important to think well before you code. Too many people try to avoid 30 minutes of thinking by doing 1 week of coding (mostly debugging) instead.