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
Explain enumerated types.
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
What is array of structure in c?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Using which language Test cases are added in .ptu file of RTRT unit testing???
In a switch statement, what will happen if a break statement is omitted?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is && in c programming?
Explain the difference between the local variable and global variable in c?
Which node is more powerful and can handle local information processing or graphics processing?
What is the difference between exit() and _exit() function?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
Why do we use int main instead of void main in c?