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
What are c preprocessors?
How can a number be converted to a string?
How to explain the final year project as a fresher please answer with sample project
What is the code for 3 questions and answer check in VisualBasic.Net?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What are the types of bitwise operator?
What is %s and %d in c?
What is the best way of making my program efficient?
Do you know null pointer?
What is void pointers in c?
Explain what is the difference between the expression '++a' and 'a++'?
Where can I get an ansi-compatible lint?
Can a function argument have default value?
Explain what header files do I need in order to define the standard library functions I use?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }