Fundamental

Back to Home Page


Contents:


Data/Values

Data is a number, character, or character string . Eg. 1,2,3 "Any String", anything that can be used as value in a program. They are allso called "Constants".

Back to Top


Instructions

Manipulators of data. "Add" , "Subtract" etc. are example of instructions. In C/C++ these are called functions.

 

Back to Top


Information/Output

Data that has been processed. Result of a process.

Back to Top


Program

Prgoram is a set of instruction(s). Written in a text file, using a text editor.These instruction written in human understandable form, following a particular compiler/translator grammer ( or syntax). Eg.

A program written in human understandable form, follwing english grammer ( well almost ).

Program name: How to make coffee , the Jahan's way:-

  1. Begin boil water until its bubbling hot
  2. Now pour some coffee
  3. Keep on boiling
  4. Check that the coffee grains are disloved
  5. If coffee grains are disolved follow instruction no. 6 else go to instruction no. 4
  6. Stop boiling

Back to Top


Compiler

A translator. A compiler translates a program to ( operating system specific) machine understandable form called object code.

Back to Top


Linker

Final step in making a program executable, which includes final parts.

Back to Top


The Whole Picture

 

Back to Top

Back to Home Page