answersLogoWhite

0

Is c a low level language?

Updated: 8/17/2019
User Avatar

Wiki User

15y ago

Best Answer

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.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

15y ago

no

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is c a low level language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a low level of language?

c


What is mid level language?

A language that allows you to combine high-level programming with low-level programming. C and C++ are generally regarded as being mid-level languages.


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.


What is the main feature of the c programming language?

High-level language with low-level abstractions.


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 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.


Why do we use C language?

We use C when we want to write low-level code with a higher level of abstraction than that provided by assembly language.


Examples of programming language?

There are hudreds of Programming languages out there.Examples: C++, GWbasic, C#, C++, HTML , Ruby etc.They're further categorized as "Low Level language" and "High Level Language".Low level languages are those languages which are closer to the binary language or in another words machine language. These are difficult for us to learn but it's easy for machine to execute quickly.Example of a low level language is assembly language.High level languages are those languages which are close to human language/natural language and are easy for us to learn.Examples of high level language are Python, Ruby, C++ , Java etc.


What are the simalarities of high and low level programming?

high level language; is a computer language that is near to human language. high level programming is a process of programming high level language.Example,c++,java,cobol are one of them. The reverse is true for the low level language.


How to convert low level language into high level language?

lang are convert into low level language by


Why is c referred to as middle level language?

C is called a middle level language since it is a higher language than something like assembler, which communicates to the computer through operations that directly manipulate data and uses machine code.High level languages, are very close to human readable/speakable languages, such as English and French ( and many more), and are therefore more human-oriented.Unfortunately, the C programming language is neither a low-level language, such as assembler, or a high level language such as English, but somewhere in between. Thus a middle-level languageBy mistake. It is a high-level language.


Why 'c' is a middle level language?

No reason. To tell the truth, there is no such thing as 'middle level language'. Assembly and machine code are low level languages, everything else is high level.