WHO WROTE C LANGUAGE?

Answers were Sorted based on User's Feedback



WHO WROTE C LANGUAGE?..

Answer / avinash

DENIS RITCHE IN 1973,

Is This Answer Correct ?    9 Yes 0 No

WHO WROTE C LANGUAGE?..

Answer / billuyadav208

Dennis Ritchie

Is This Answer Correct ?    6 Yes 0 No

WHO WROTE C LANGUAGE?..

Answer / sanjaykuma

denni's reche in 1970 at at&tbell lab's

Is This Answer Correct ?    3 Yes 0 No

WHO WROTE C LANGUAGE?..

Answer / haritha

Dennis Ritche

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

What is hashing in c language?

0 Answers  


while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above

0 Answers  


I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....

2 Answers  


write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]

7 Answers  


What are the rules for the identifier?

0 Answers  






What is array in c with example?

0 Answers  


value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?

6 Answers   Google,


write a program to create a sparse matrix using dynamic memory allocation.

0 Answers  


main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }

2 Answers  


What is #line in c?

0 Answers  


Can u return two values using return keyword? If yes, how? If no, why?

7 Answers  


#define d 10+10 main() { printf("%d",d*d); }

6 Answers  


Categories