93 captures
12 Oct 2007 - 05 May 2025
Sep OCT Nov
14
2012 2013 2014
success
fail

About this capture

COLLECTED BY

Organization: Internet Archive

The Internet Archive discovers and captures web pages through many different web crawls. At any given time several distinct crawls are running, some for months, and some every day or longer. View the web archive through the Wayback Machine.

Collection: Wide Crawl started August 2013

Web wide crawl with initial seedlist and crawler configuration from August 2013.
TIMESTAMPS

The Wayback Machine - http://web.archive.org/web/20131014220623/http://www.techterms.com/definition/sourcecode
 


TechTerms.comTechTerms.com

Browse Alphabetically Browse



Browse by Category

Internet Terms

Hardware Terms

Software Terms

Technical Terms

File Formats

Bits and Bytes

Tech Acronyms



Other Resources

Help Center

Quiz Questions

Daily Definition

Random Term



Browse by Tech Factor

1 2345678910




# ABCDEFGHIJKLMNOPQRSTUVWXYZ

Source Code













Every computer program is written in a programming language, such as Java, C/C++, or Perl. These programs include anywhere from a few lines to millions of lines of text, called source code.

Source code, often referred to as simply the "source" of a program, contains variable declarations, instructions, functions, loops, and other statements that tell the program how to function. Programmers may also add comments to their source code that explain sections of the code. These comments help other programmers gain at least some idea of what the source code does without requiring hours to decipher it. Comments can be helpful to the original programmer as well if many months or years have gone by since the code was written.

Short programs called scripts can be run directly from the source code using a scripting engine, such as a VBScript or PHP engine. Most large programs, however, require that the source code first be compiled, which translates the code into a language the computer can understand. When changes are made to the source code of these programs, they must be recomplied in order for the changes to take effect in the program.

Small programs may use only one source code file, while larger programs may reference hundreds or even thousands of files. Having multiple source files helps organize the program into different sections. Having one file that contains every variable and function can make it difficult to locate specific sections of the code. Regardless of how many source code files are used to create a program, you will most likely not see any of the original files on your computer. This is because they are all combined into one program file, or application, when they are compiled.




Tech Factor: 

1
2
3
4

Updated: October 11, 2007
Category: Software Terms