Reputation: 9
Are there any compilers/tools available for a new coder that can tell me why my code is not executing or at least explain the errors in more detail?
Upvotes: 0
Views: 49
Reputation: 1428
Depending on the language you are coding in there are several options.
I would look for an IDE(Integrated Development Environment) for the language you are coding in.
A couple that come to mind are: Eclipse(c/c++ and Java), Spyder(python)
These have a range of tools that can help you in your coding process, such as object/variable inspection and debugging tools.
Object/variable inspection is handy so that you can see what values your variables are holding. Typically you will only see the last value a variable was given due to the coding running faster than you can read.
Typical debugging tools allow you to step through your code line by line to see what is happening.
Combining the two tools above will really help you understand what is happening and where it is happening.
Also... google will really help you out when it comes to compiler errors. After a while of googling compilers errors you will start to gain an intuition for what your compiler is telling you.
Hope this helps!
Upvotes: 1