Saturday, April 13, 2019

Why C is called Middle Level Language?

C Programming language is called as Middle Level Language because 

(1) It gives or Behaves as High Level Language through Function gives a modular programming and breakup,  increased efficiency for resusabiluty. 

(2) It gives access to the low level memory through pointer. Moreover it does support the Low Level programming I.e, Assembly Language.

As it's a combination of these two aspects, it's neither a High Level nor a Low Level language but a Middle Level Language. 

No comments:

Post a Comment

To sum n different number using array.

#include<stdio.h> #include<conio.h> Void main()      {          int a[20] n,  s=0,i;          printf("Enter the numbe...