Re:

1999-04-01 Thread Henk Jan Barendregt
Darius Blaszijk wrote: Is there any compiler/editor/debugger-package anvailable from the internet? Or am I missing something here? I've noticed that MC has an edit feature which shows source code using different colours. I find this very helpfull. You can use wpe or xwpe for this. When

Re: your mail

1999-04-01 Thread Vitaly Fedrushkov
Good $daytime, To do some programming I use for instance EMACS. When I'm done I exit EMACS and run GCC and then run the program to see if it does the thing I want it to do. This procedure is time consuming and not eficient. There is no need to exit any editor. If you're running X windows,

reference count and memory allocation

1999-04-01 Thread Bill Cheng
Hello all, I would like to ask some questions about compiler. I know there are several techniques to implement storage management, like reference count and garbage collection. Could anyone kindly give more details on these? And if possible, could you give some code and explain in detail? And does

Re: your mail

1999-04-01 Thread Canul Podkopayeva
I don't use emacs much but I use vim. One way you can do what you're trying to do is by first making a Makefile (learn how to make them :-]) then, has to be in the same directory editing your source file with vim then you'd just have to hit escape then colon (:) and type make, after that you can

Re:

1999-04-01 Thread Canul Podkopayeva
Use vi. It has syntax hilighting --- Henk Jan Barendregt [EMAIL PROTECTED] wrote: Darius Blaszijk wrote: Is there any compiler/editor/debugger-package anvailable from the internet? Or am I missing something here? I've noticed that MC has an edit feature which shows source code using

Re: your mail

1999-04-01 Thread Bug Hunter
go out to www.mamma.com and search for "ddd" It should be on ftp.lame.org, also. ddd uses gdb, and requires X windows. It provides superior source level debugging. you may also use xxgdb, or simply gdb to debug programs at the source level. you must compile and link with the -g

Re:

1999-04-01 Thread Joseph Keen
Try vi, g++, and gdb Darius Blaszijk wrote: Is there any compiler/editor/debugger-package anvailable from the internet? Or am I missing something here? I've noticed that MC has an edit feature which shows source code using different colours. I find this very helpfull. You can use

terminal

1999-04-01 Thread James
how do i turn off the cursor and make my programs accept characters typed into a terminal without you having to press enter first? I once knew, but i forgot :) -- +++ If at first you don't succeed, you must be a programmer +++ [EMAIL PROTECTED]

Re: Type casting with malloc()

1999-04-01 Thread James
On Thu, 1 Apr 1999, holotko wrote: # My question. Do I really need to add the type cast (ObjectType *) # before the call to malloc() ? no. but gcc will warn you, if you use -Wall, about it. Doesn't do any harm leaving it in and if you miss it out gcc will add it in itself. Technically you need