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 |
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Is c object oriented?
Where are some collections of useful code fragments and examples?
Explain how can I avoid the abort, retry, fail messages?
Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.
2 Answers Scientific Atlanta, Wipro,
How to write the code of the program to swap two numbers with in one statement?
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
what is purpose of fflush(stdin) function
How can I write a function analogous to scanf?
what is the main use of c where it can use the c
What is a node in c?
main() { int a[10]; printf("%d",*a+1-*a+3); }