Hello all,
I recently chose Pelles C as my IDE with which to learn C. I just figured out how to use the debugger at C-level instead of assembly, and there is one customization I'd like to make if possible.
When I start my program, if I have a character array declared in my main(), it will show up in the Local tab as having a drop-down button so I can view the individual elements by index kind of like this:
str
<0> a
<1> b
<2> c
However, if I pass that array to a function, when I am in that function with the debugger, the parameter array will show up like this:
str "abc"
Is there any way I can change that so that I can always view an array as a drop-down list?