Answer Posted / achal
C is a general purpose programming language. It is a middle
level language, mostly used to program hardware devices. It
is used in procedural programming; not object oriented. One
important thing is that it is capable of manipulating
individual bits of data; small language ; small standard
library; compact executable code. There are many other
things what make C suitable for HW programming
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What are the functions to open and close file in c language?
Which node is more powerful and can handle local information processing or graphics processing?
What is an operator?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What are the 5 data types?
What is the g value paradox?
Why do we need a structure?
What is pointer and structure in c?
How many levels of pointers can you have?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What is #include called?
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Is it better to use malloc() or calloc()?