Hai why 'c' is the middle language
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / rukmanee
'C' is a middle language because it has the faster
programming efficiency as compared to the machine language
or low level language and has faster machine efficiency
also as compared to the high level language..
| Is This Answer Correct ? | 3 Yes | 2 No |
C programs are usually written in pure english languages....
so it can be said as high level languages... but at the same
time it can directly operate on Machine level (Bitwise
level) directly... so it can be said as low level
language.... since it is swinging inbetween... C IS CALLED
Middle level language.....
thank u
| Is This Answer Correct ? | 6 Yes | 6 No |
Answer / nakul sharma
In any programing language there are two following key aspects,
1. Faster Execution
2. Lesser Development time
C language as compared to Low level language (assembly language) have less faster execution time.
And C language as compared to High level language (Java Language) takes more development time.
Because of the reason above C is known as Middle Level Language.
| Is This Answer Correct ? | 1 Yes | 3 No |
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
main() {int a=200*200/100; printf("%d",a); }
please explain every phase in the "SDLC" in the dotnet.
What are header files in c programming?
What is the usage of the pointer in c?
How can I make it pause before closing the program output window?
What is the use of the sizeof operator?
What is 2 d array in c?
What is pass by reference in c?
What is putchar() function?
Hi Every one...........I have been selected for the SBI Clerk. But i m one month Pregnanat. So anyone please suggest me, is they take any objection on my joining .
4 Answers State Bank Of India SBI,
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?