Answer Posted / vignesh1988i
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 |
Post New Answer View All Answers
What functions are used for dynamic memory allocation in c language?
Whats s or c mean?
.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 main function is called in c?
Write a code of a general series where the next element is the sum of last k terms.
Why is c called "mother" language?
Why do we use static in c?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What is #error and use of it?
What is the sizeof () operator?
What are the differences between Structures and Arrays?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What is identifiers in c with examples?
What is structure and union in c?
What is table lookup in c?