who is the founder of c
Answer Posted / tacit girl
Dennis Ritchie in 1972 @ AT & T's bell LAboratories...
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is the difference between a function and a method in c?
Which is more efficient, a switch statement or an if else chain?
Explain the bubble sort algorithm.
What is a protocol in c?
Write a program to swap two numbers without using third variable?
What is the explanation for modular programming?
How can I make sure that my program is the only one accessing a file?
What is the difference between near, far and huge pointers?
What is a double c?
What is the size of empty structure in c?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is c language used for?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What is c definition?
Differentiate between functions getch() and getche().