Answer Posted / vignesh1988i
C usually a MIDDLE LEVEL language.... why it is called so because it can perform bitwise operations directly and also can perform user understandable operations like printf , scanf, looping etc etc......
here the bitwise operations are those where we can communicate directly through hardware using the OS.......
and also ASSEMBLY LEVEL Programming (ALP) can also be done to the processor direclty through C.......
thank s
| Is This Answer Correct ? | 71 Yes | 11 No |
Post New Answer View All Answers
How many keywords (reserve words) are in c?
What are compound statements?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
What is typedef example?
Explain low-order bytes.
Explain how can I pad a string to a known length?
How many types of arrays are there in c?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is wild pointer in c with example?
What is the data segment that is followed by c?
What is break statement?
What is dynamic memory allocation?
How can you tell whether two strings are the same?
I came across some code that puts a (void) cast before each call to printf. Why?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.