what is c language?
Answers were Sorted based on User's Feedback
Answer / gaurav sharma
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 ? | 6 Yes | 1 No |
Answer / 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 |
What is a double c?
WHAT IS INT?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
What is the difference between the expression “++a” and “a++”?
2. What does static variable mean?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
What are predefined functions in c?
Is there any possibility to create customized header file with c programming language?
What's a "sequence point"?
Why c is a mother language?
Explain function?
show how link list can be used to repersent the following polynomial i) 5x+2