Answer Posted / manoj
C Programming language is called as Middle Level Language
because
(i) it gives or behaves as High Level Language through
Functions - gives a modular programming and breakup,
increased efficiency for reusability
(ii)it gives access to the low level memory through
Pointers. Moreover it does support the Low Level
programming i.e, Assembly Language.
As its a combination of these two aspects, its neither a
High Level nor a Low level language but a Middle Level
Language.
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
How do I send escape sequences to control a terminal or other device?
explain what is an endless loop?
Why we use int main and void main?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is data type long in c?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What are keywords c?
Explain the use of #pragma exit?
What are the complete rules for header file searching?
Can include files be nested?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
How to write a code for reverse of string without using string functions?
How to declare pointer variables?
In C, What is the #line used for?
In c language can we compile a program without main() function?