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 |
print the palindrome numbers in between 0 to n
What does %p mean?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
Do you know the use of fflush() function?
Can you apply link and association interchangeably?
What oops means?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
difference between i++* and *++i
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search
Do you know the purpose of 'register' keyword?
Write a function in c to find the area of a triangle whose length of three sides is given.
How can I read a directory in a c program?