Trial and error is a learning method where you learn from your errors.
The debugger is a tool that allow you to see step by step what your code is doing.
Your code do not behave the way you expect, or you don't understand why !
There is an almost universal solution: Run your code on debugger step by step, inspect variables.
The debugger is here to show you what your code is doing and your task is to compare with what it should do.
There is no magic in the debugger, it don't know what your code is supposed to do, it don't find bugs, it just help you to by showing you what is going on. When the code don't do what is expected, you are close to a bug.
To see what your code is doing: Just set a breakpoint and see your code performing, the debugger allow you to execute lines 1 by 1 and to inspect variables as it execute.
Debugger - Wikipedia, the free encyclopedia[
^]
Mastering Debugging in Visual Studio 2010 - A Beginner's Guide[
^]
Basic Debugging with Visual Studio 2010 - YouTube[
^]
1.11 — Debugging your program (stepping and breakpoints) | Learn C++[
^]
The debugger is here to only show you what your code is doing and your task is to compare with what it should do.
[Update]
Quote:
How do I write a function that takes a dynamic array from the main and creates 2 arrays, 1 for positive values and other for negative and return the two arrays to the main?
Just a little writing should have gave you clues to solution:
a[0]=1 => p[0]=1
a[1]=0 => p[1]=0
a[2]=-1 => n[0]=-1
a[3]=3 => p[2]=3
a[4]=-3 => n[1]=-3
a[5]=1 => p[3]=1
it look obvious that you need 3 indexes for a, p and n.