I am new to c++(i am taking it as my first serious programming language) http://www.cplusplus.com/forum/articles/12974/
I was doing Dungeon challenge code when my code got really confusing and it became hard to find out what i did wrong to get bad results . Well i am wondering if there is a programme able to break down what is going on the console . For example: main function running.....cin<<x=6... function(int x=4,int y=5) loop first run(4<7) secondrun(6<7) loop ended(8<7=false)......
I dont know exactly but i am looking something that can show at real time what values are going in variables and functions and simplify the task to find out what is wrong......
A debugger allows you to step line by line through your source code and add watches (i.e. watch a variable and its value). I don't personally use code::blocks but I am led to believe its decent.
I am a avid Visual Studio user, been that since the first version many moons ago, apart from Eclipse when I'm doing Android work.