Levels of C - Language



 


Levels of computer language:-

1) Low level language:

Defined as a language which uses 0's and 1's and can       be understood only by the computer to computer         without any translator.

It is also called BINARY (or) MACHINERY LANGUAGE.

 It is so hard to learn and also program(instructions to the computer)  will be larger size.

 Debugging (finding errors) is difficult.
            
   Used in early days , but not now.

2) High level language: 

 Defined as a language which uses English language and symbols like “+” , “-“ , “*” , “/” , print, read, write etc… to develop programs which can be easily understood by the programmer.

 Computer can not understand this language directly. But it has to be translated into machine language with the help compiler (a translator program).

 User has to remember the syntax(format).

 Program will be very small in size.

  Easy to learn and understand.

 Debugging (finding errors) is easy.

  Takes less time to develop a program. 



                                                                                                               --  Thank you  --

Comments

Post a Comment

Popular posts from this blog

Structure of C-Language