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 |
Once I have used freopen, how can I get the original stdout (or stdin) back?
Is there any possibility to create customized header file with c programming language?
Which is better between malloc and calloc?
What is a segmentation fault?
Explain how can you determine the size of an allocated portion of memory?
What is a example of a variable?
what is develop in c language
Define circular linked list.
Why array is used in c?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
What are signals in C?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?