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 |
Is c high or low level?
Explain how are portions of a program disabled in demo versions?
how can we print hellow world programme without using semicolon
Hai what is the different types of versions and their differences
Give me basis knowledge of c , c++...
what will be maximum number of comparisons when number of elements are given?
What is the difference between class and object in c?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
To what value do nonglobal variables default? 1) auto 2) register 3) static
How are structure passing and returning implemented?
Explain how are 16- and 32-bit numbers stored?
Why does this code crash?