Why is C called a middle-level language?



Why is C called a middle-level language?..

Answer / nashiinformaticssolutions

It combines features of high-level and low-level languages.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float

1 Answers  


enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?

4 Answers   TCS,


How can I return multiple values from a function?

6 Answers  


How can I call a function, given its name as a string?

4 Answers   ABC Telecom,


Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)

2 Answers   Cap Gemini, HCL,


What is the difference between ‘g’ and “g” in C?

1 Answers  


Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1

0 Answers  


What is c preprocessor mean?

0 Answers  


what is the use of keyword volatile??

4 Answers   LG Soft,


What is the most efficient way to count the number of bits which are set in a value?

4 Answers  


what is difference between strcmp & palindrome?

3 Answers  


What is the purpose of clrscr () printf () and getch ()?

0 Answers  


Categories