Re: Debugger for C programming?

2001-10-06 Thread Joe Bouchard
On Tue, Oct 02, 2001 at 11:32:40PM +1000, [EMAIL PROTECTED] wrote: > Is there a good debugger for C programming. You know, the kind of thing > that lets you step through a line at a time running your program and put > watches on variables etc. Another debugger is "xxgdb". I u

Re: Debugger for C programming?

2001-10-02 Thread mdevin
On Tue, Oct 02, 2001 at 09:09:44AM -0700, Peter Jay Salzman wrote: > begin: Daniel Toffetti <[EMAIL PROTECTED]> quote > > > Is there a good debugger for C programming. You know, the kind of > > > thing that lets you step through a line at a time running your >

Fw: Re: Debugger for C programming?

2001-10-02 Thread Sean Morgan
On Tue, 2 Oct 2001 23:32:40 +1000 [EMAIL PROTECTED] wrote: > Is there a good debugger for C programming. You know, the kind of thing > that lets you step through a line at a time running your program and put > watches on variables etc. > > I am doing an assignment for Uni, and

Re: Debugger for C programming?

2001-10-02 Thread Noah Meyerhans
On Tue, Oct 02, 2001 at 11:32:40PM +1000, [EMAIL PROTECTED] wrote: > Is there a good debugger for C programming. You know, the kind of thing > that lets you step through a line at a time running your program and put > watches on variables etc. If you want a nice GUI, check out DDD (

Re: Debugger for C programming?

2001-10-02 Thread Rafael Sasaki
On Tue, Oct 02, 2001 at 03:38:17PM +0200, martin f krafft wrote: > also sprach [EMAIL PROTECTED] (on Tue, 02 Oct 2001 11:32:40PM +1000): > > Is there a good debugger for C programming. You know, the kind of thing > > that lets you step through a line at a time running your

Re: Debugger for C programming?

2001-10-02 Thread Peter Jay Salzman
begin: Daniel Toffetti <[EMAIL PROTECTED]> quote > > Is there a good debugger for C programming. You know, the kind of > > thing that lets you step through a line at a time running your > > program and put watches on variables etc. > > > > Now I know that Linux

Re: Debugger for C programming?

2001-10-02 Thread Daniel Toffetti
> Is there a good debugger for C programming. You know, the kind of > thing that lets you step through a line at a time running your > program and put watches on variables etc. > > Now I know that Linux rules for C programming, so what do all you > programmers use to debug you

Re: Debugger for C programming?

2001-10-02 Thread dman
On Tue, Oct 02, 2001 at 03:38:17PM +0200, martin f krafft wrote: | also sprach [EMAIL PROTECTED] (on Tue, 02 Oct 2001 11:32:40PM +1000): | > Is there a good debugger for C programming. You know, the kind of thing | > that lets you step through a line at a time running your program a

Re: Debugger for C programming?

2001-10-02 Thread John Toon
On Tuesday 02 October 2001 14:32 pm, [EMAIL PROTECTED] wrote: > Is there a good debugger for C programming. You know, the kind of thing > that lets you step through a line at a time running your program and put > watches on variables etc. > > I am doing an assignment for Uni, and

Re: Debugger for C programming?

2001-10-02 Thread Jordi S . Bunster
On Tue, Oct 02, 2001 at 11:32:40PM +1000, [EMAIL PROTECTED] wrote: > Is there a good debugger for C programming. You know, the kind of thing > that lets you step through a line at a time running your program and put > watches on variables etc. gdb is the usually used debugger un

Re: Debugger for C programming?

2001-10-02 Thread martin f krafft
also sprach [EMAIL PROTECTED] (on Tue, 02 Oct 2001 11:32:40PM +1000): > Is there a good debugger for C programming. You know, the kind of thing > that lets you step through a line at a time running your program and put > watches on variables etc. gdb. and watch it kick micro$oft's

Debugger for C programming?

2001-10-02 Thread mdevin
Is there a good debugger for C programming. You know, the kind of thing that lets you step through a line at a time running your program and put watches on variables etc. I am doing an assignment for Uni, and have been just adding printf statements in my code to check variable values etc. But