Pelles C forum

C language => Beginner questions => Topic started by: erprasenjitk on March 28, 2016, 12:06:29 AM

Title: check variables values while debugging in Pelle's C compiler(version 8)
Post by: erprasenjitk on March 28, 2016, 12:06:29 AM
Hi Guys,

I am new to Pelles C compiler. i got stuck with one issue. while debugging i want to check the variable's values and also try changing it. i dont know how to do this. can any one please help me with this.

Thanks,
prasenjit
Title: Re: check variables values while debugging in Pelle's C compiler(version 8)
Post by: Bitbeisser on March 28, 2016, 03:42:23 AM
Hi Guys,

I am new to Pelles C compiler. i got stuck with one issue. while debugging i want to check the variable's values and also try changing it. i dont know how to do this. can any one please help me with this.
Well, if you have your project compiled with debug info, you should have a window in the lower right of the that shows tabs like watch, Globals, Locals, etc. You also should be able to right click in the source code windows and do a "quick watch" or set a new watch for a variable. Then you have also the ability to make changes to those variables...

Ralf