who is the founder of c
Answer Posted / dinesh charge
C was founded by Dennis Ritchie & Ken Thompson at Bell Labs between 1969 and 1973.
c paved the way for Java and C++.
Also Dennis Ritchie was a co-developer of UNIX OS.
Unix paved the way for many operating system like Apple's MAC OS X and Google's Android.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why we use int main and void main?
Explain the use of bit fieild.
main() { printf("hello"); fork(); }
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is nested structure in c?
How do I use strcmp?
What are the characteristics of arrays in c?
What is union in c?
hi send me sample aptitude papers of cts?
Explain the use of 'auto' keyword in c programming?
explain what is an endless loop?
What is the use of a conditional inclusion statement in C?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?