who is the founder of c
Answers were Sorted based on User's Feedback
Answer / tacit girl
Dennis Ritchie in 1972 @ AT & T's bell LAboratories...
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / raj
full name of denish ritchi
what is the full name of ........?
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / 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 |
Tell me is null always defined as 0(zero)?
What is the difference between array and pointer?
What is memcpy() function?
why do some people write if(0 == x) instead of if(x == 0)?
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
What is static and volatile in c?
How can you find the day of the week given the date?
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
Write a C program to fill a rectangle using window scrolling
What are the different types of data structures in c?
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
Explain what is meant by high-order and low-order bytes?