Source Code

Logan

New Member
As you're reading this, right click on the page and select "View Source Code". A text editor will open up and you'll see the source code.

In the most basic terms, source code is the code that makes up the application/web page. It's the code the developer/programmer writes to make the program function.

Here's a Wikipedia link that explains source code more thoroughly:
http://en.wikipedia.org/wiki/Source_Code
 

mike.shine

New Member
In computer science, source code (commonly just source or code) is any collection of statements or declarations written in some human-readable computer programming language. Source code is the mechanism most often used by programmers to specify the actions to be performed by a computer.

The source code which constitutes a program is usually held in one or more text files, sometimes stored in databases as stored procedures and may also appear as code snippets printed in books or other media. A large collection of source code files may be organized into a directory tree, in which case it may also be known as a source tree.

A computer program's source code is the collection of files needed to convert from human-readable form to some kind of computer-executable form. The source code may be converted into an executable file by a compiler, or executed on the fly from the human readable form with the aid of an interpreter.

The code base of a programming project is the larger collection of all the source code of all the computer programs which make up the project.

Check http://en.wikipedia.org/wiki/Source_code for more details
 
Top