Difference between revisions of "C"

From WikEmacs
Jump to navigation Jump to search
Line 6: Line 6:
  
 
[http://cscope.sourceforge.net/ Cscope] is the de-facto tool for browsing C code. The package is bundled with ''xscope.el'' library which enables use of cscope from within Emacs.
 
[http://cscope.sourceforge.net/ Cscope] is the de-facto tool for browsing C code. The package is bundled with ''xscope.el'' library which enables use of cscope from within Emacs.
 +
 +
== Debugging ==
 +
 +
[[gdb]] can be used for debugging.
  
 
[[Category:Programming languages]]
 
[[Category:Programming languages]]

Revision as of 12:59, 27 March 2012

C is a general-purpose computer programming language developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratories. It is one of the most widely used programming languages of all time. See Wikipedia article.

The default major mode associated with C files (.c and .h) is cc-mode.

Browsing code

Cscope is the de-facto tool for browsing C code. The package is bundled with xscope.el library which enables use of cscope from within Emacs.

Debugging

gdb can be used for debugging.