Difference between revisions of "Source code"
Jump to navigation
Jump to search
HitTheHive (talk | contribs) (→Example: assembler, linker, compiler) |
HitTheHive (talk | contribs) (→See also: Linking directly to article) |
||
| Line 18: | Line 18: | ||
*[[Software]] | *[[Software]] | ||
*[[Machine code]] | *[[Machine code]] | ||
| − | *[[Open Source]] | + | *[[Open source|Open Source]] |
[[Category:Computers]] | [[Category:Computers]] | ||
[[category:Computer science]] | [[category:Computer science]] | ||
Revision as of 03:12, July 24, 2007
Source code is the statements and declarations, usually in human readable form, the specifies a computer program. Knowledge of programming is usually necessary in order to read and understand source code in a program.
Example
The following is an example of a C program that when compiled and executed prints the words "Hello world" to the screen. A "C" compiler and linker is necessary to compile the program and turn it into an executable. Historically, an assembler is also needed, but newer compilers often integrate the assembler and linker functions together.
/* This is a C language program comment */
#include <stdio.h>
#include <stdlib.h>
main()
{
printf("Hello wolrd.");
}