C programming FAQ
##################### Compiler: gcc ##################### http://www.cprogramming.com/gcc.html $ aptitude update && aptitude safe-upgrade $ aptitude install build-essential $ gcc -v $ make -v $ aptitude install manpages-dev Basically after doing the install manpages-dev you can get help on software development subjects. For example: $ man fork $ man 3 printf _________________________________________________________________ ############################## GNU Objective-C runtime ############################## $ aptitude install gobjc _________________________________________________________________ ##################### Debugger: GDB ##################### http://www.cprogramming.com/gdbtutorial.html http://wwwcsif.cs.ucdavis.edu/~davis/30/gdb_Tutorial.htm http://www.tutorialspoint.com/gnu_debugger/index.htm $ aptitude search gdb $ aptitude install gdb _________________________________________________________________