what type of language is C?
Answers were Sorted based on User's Feedback
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 |
Answer / ankith.v
C Is One of the the procedure Oriented And Syntax based
Language
| Is This Answer Correct ? | 50 Yes | 6 No |
Answer / mitesh
c is a middle level language.it is easy to understand and write the program.
| Is This Answer Correct ? | 16 Yes | 1 No |
Answer / kiran
As 'C' has the characteristics of both high-level and low-level languages, it is a "Middle level" language. As C programs are machine dependent, it is a "High-level Language".
| Is This Answer Correct ? | 7 Yes | 4 No |
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
What is memcpy() function?
What is the -> in c?
What are c header files?
program to locate string with in a string with using strstr function
How can I implement sets or arrays of bits?
write a program to convert a expression in polish notation (postfix) to inline (normal)
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
What is .obj file in c?
What is boolean in c?
Why does everyone say not to use scanf? What should I use instead?
every function has return the value?