answersLogoWhite

0

Why C language called middle level language?

Updated: 8/16/2019
User Avatar

Wiki User

15y ago

Best Answer

because it has instrictions and functions with keywords which resemble its meaning in english.the keywords are very similar to the task they are used for.for example printf to give output.but it is not as simple as basic which is a high level language.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why C language called middle level language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is language is called middle level language?

Why is C called a Middle Level Language?


Is c is middle level language justify your answer?

No, there is no such thing as 'middle level language'. C is high level language, and it is no way similar to Assembly language.


Why C language is called mid level language justify with an example?

C language support bit-level manipulation that are normally done in assembly or machine level language. C reduce the gap between high level and low level language. So, it's called as middle level language.


C-programming language is a middle level language discuss?

There is no such thing as 'middle level language'.


Is c a middle level language?

No, high level. Actually, there is no such thing as 'middle level language'.


Is C is an High Level Language?

c is basically middle level language.assembly level language is the low level language which is the close to computers.C language comes in the category of middle level language with other languages like pascal,fortran.The successor language of C i.e. C++ and Java are high level language. Because they easy to understand by human than C.


Why C language is middile language?

If you meant 'middle', then it is a mistake; C is a high-level language.


Is c is medium level language if yes than why?

There is no such thing as 'middle level language'.


What are the examples of middle level programming language?

binary language


Why c is called as middle level language?

Misunderstanding. There are no 'middle level languages', only low and high level languages. Machine code and assembly are the former, everything else is the latter.C is often called a middle-level computer language as it combines the elements of high-level languages with the functionalism of assembly language. But actually it doesn't have any Assembly-like feature (whatever that means).


Why c plus plus is not a middle level language?

C++ is a high-level language with low-level features, including memory pointer variables, therefore it is an intermediate-level language. In other words, it is a middle-level language. It cannot be regarded in any other way, because it is not as low-level as assembler, but it is as low-level as C, and can also be as high-level as Java.


Is c a low level language?

C language is a middle level language, a middle language is one which somehow allows you to access your computer memory directly. Where as Java and C# are completely highlevel language as they dont allow you to directly access your computer memory, Assembly Language is said to be the low level language as it allow the the direct access of memory. you can read more on C language here: http://thetechnofreaks.com/2011/08/23/the-basics-welcome-to-the-world-of-programming/ Actually, there are no 'middle level languages', machine code and Assembly is low level, everything else is high level. And of course you cannot break out from your virtual memory space using C (or any other language). It is called 'protected mode' for a reason.