Why is C language being considered a middle level language?



Why is C language being considered a middle level language?..

Answer / Chhaya Goswami

C is often classified as a middle-level programming language because it offers features from both high-level languages (like improved readability and abstraction) and low-level languages (like direct memory manipulation). This combination makes C suitable for system programming, application development, and operating systems.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain &#1567;&#1567;&#1567;

4 Answers  


What is the sizeof () a pointer?

1 Answers  


#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?

4 Answers   Ramco,


WHAT IS C?

6 Answers  


how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.

2 Answers  


Please write the area of a RIGHT ANGLED TRIANGLE.

1 Answers  


What is structure pointer in c?

1 Answers  


HOW CAN ADD OUR FUNCTION IN LIBRARY.

5 Answers  


What are the c keywords?

1 Answers  


What is union in c?

1 Answers  


what is const volatile?

2 Answers  


write a c program to check weather a particluar bit is set or not?

5 Answers   IBM,


Categories