Computer Programming Languages19-09-2007
Computer Programming Languages19-09-2007
We will learn
1. Computer Programming Languages.
2. Non-computational languages
3. Machine language
Example
4. Assembly language
Example
5. High level language
Examples.
Computer
Programming
Languages
Computer Programming
Languages:
A programming language is an artificial language that
can be used to control the behavior of a machine,
particularly a computer
name "add"
mov al, 5 ; bin=00000101b
mov bl, 10 ; hex=0ah or bin=00001010b
add bl, al ; 5 + 10 = 15 (decimal) or
hex=0fh or
bin=00001111b
High-level language:
High-level languages are relatively easy to learn
because the instructions bear a close resemblance to
everyday language, and because the programmer does
not require a detailed knowledge of the internal workings
of the computer.
Function Pointers