why 'c' is called middle level language.
Answers were Sorted based on User's Feedback
Answer / chetan raikwar
C is a middle level language because it can manipulate the operating system up to a minor level. In simple words -
"it can communicate with hardware,and can also make operating systems and user application. But it can't make very user friendly or GUI based application and fails at doing some complicated tasks like developing a good GUI for an application and Gaming etc."
" To be capable in doing all that, C was upgraded with C++ and later on C# , VC++ etc. "
C's upgraded versions are high level programming languages yet C will remain the same always.So it's still called a middle level language.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / guest
C is a language that can be used to develop both 'user
applications' and 'operating systems'. It allows you to have
access to the machine language itself if you so choose (inline
asm). Most of the unix operating system is written in C. It is
a great language to start with (IMHO) because it contains the
basic concepts of computer programming. As well as giving you
a feel for what actually goes on in the machine itself. Higher
level languages abstract you from the machine, usually (again
IMHO) focusing more on the rapid development of Applications.
Remembering that C++ was originally developed as C with
classes, learning C is (again IMHO) almost a pre-requisite for
learning C++.
| Is This Answer Correct ? | 2 Yes | 3 No |
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
How do you view the path?
Explain command-line arguments in C.
code for replace tabs with equivalent number of blanks
What is union and structure?
Write a program to generate prime factors of a given integer?
What is main () in c?
Explain the concept and use of type void.
code for inverse a matrix
what is the difference between static variable and register variable?
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,