Answer Posted / guest
C is a general-purpose computer programming language developed
between 1969 and 1973 by Dennis Ritchie at the Bell Telephone
Laboratories for use with the Unix operating system
C is an imperative systems implementation language.
It was designed to be compiled using a relatively
straightforward compiler, to provide low-level access to
memory, to provide language constructs that map efficiently to
machine instructions, and to require minimal run-time support.
C was therefore useful for many applications that had formerly
been coded in assembly language..
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what is meant by 'bit masking'?
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
Do string constants represent numerical values?
Explain c preprocessor?
What are header files and what are its uses in C programming?
Explain can you assign a different address to an array tag?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
write a progrmm in c language take user interface generate table using for loop?
What is a loop?
Is main a keyword in c?
What is the difference between array and pointer in c?
What does c mean in basketball?
Explain what header files do I need in order to define the standard library functions I use?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
If fflush wont work, what can I use to flush input?