who developed c and why he developed c?
Answers were Sorted based on User's Feedback
Answer / shaff85
c developed by "dennis ritchie", before programming languages
has less features such as in "BCPL" and "B" earlier
languages before 'C', later Mr.ritchie came up with structured
programming languages with
1) rich set of operators
2)rich set of data types
3)pointers and pointer arthimetic
| Is This Answer Correct ? | 26 Yes | 0 No |
Answer / krishna kanhaiya
dennis ritche are modified in "c" language .ken thomson are
sevloped in "B" language and that language modifier is
dennis ritche ...........
i am not sure write ya wrong
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / himaja
1.kthomson and denicsh ritch
2.Dennis Ritchie founded C at AT&T Bell Labs.@Nayanprakash..the two people u mentioned are not involved in finding C but "B" it was a language founded before C..
Originally developed by DENNIS RITCHIE in 70's Outgrowth of two earlier languages called BCPL and B.978,When Kernighan and Ritchie published a definitive description of the language.
..3.c was evolved from ALGOL, BCPL AND B by dennis ritchie at
bell lab in 1972..
4. language is also called as typeless lanugage, developed by ken thompson while writing unix. so Dennies ritchie written C compiler contains data types. then Unix written in C language
5.I am saying here only the best solution for this question "Ken thomson's B language + Dennis Ritche's cCompiler= Complete C language"
| Is This Answer Correct ? | 1 Yes | 0 No |
related to rdbms query .
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Difference between malloc() and calloc() function?
What is a class?
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
How do you determine if a string is a palindrome?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
Is register a keyword in c?
print the palindrome numbers in between 0 to n
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Can a program have two main functions?
Write a code to generate divisors of an integer?